mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #185] Question: R1C1 reference style #153
Labels
No labels
awaiting user feedback
bug
cmake
cmake
docs
feature request
in progress
long term
medium term
medium term
pull-request
question
question
ready to close
short term
under investigation
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/libxlsxwriter#153
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @almos on GitHub (Jun 7, 2018).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/185
Originally assigned to: @jmcnamara on GitHub.
Have a need to write formulas in R1C1 reference style.
Is it possible to enable R1C1 reference style for workbook/worksheet and use for formulas?
Thank you
@jmcnamara commented on GitHub (Jun 7, 2018):
Hi,
This is something that is mentioned in the XlsxWriter docs but not in the libxlsxwriter docs. I should fix that.
Basically, R1C1 isn't supported and it is unlikely that it will be. The main issue is that Excel doesn't store the formulas in R1C1 format. If a user writes a formula in cell B5 like
=R[-3]C+R[-2]C[4]it is actually stored in the file as=B2+F3.This means that an xlsx file writer, like libxlsxwriter, would have to convert all formulas from R1C1 to A1, which would mean parsing and converting all formulas. That isn't practical to implement.
So this won't be implemented. Sorry.
John