Formulas are ignored when writing sheet. #103
No reviewers
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#103
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
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?
Implement fix as advised by @SheetJSDev
https://twitter.com/christocracy/status/504469597773643776
Ran tests: all passed https://www.dropbox.com/s/b1rw0jvgy8riwoj/Screenshot%202014-08-27%2001.33.25.png?dl=0
Cell values and formulae are not mutually exclusive. If you look at how Excel writes sheets, both pieces of information are included. For example, consider
A1=1,A2=2,A3=A1+A2
. The underlying XML for cell A3 is:One advantage of including the value (if available) is that previewers can show the cached value without having to compute the formula.
If I understand the code correctly, if the formula and the value are present (
cell.v
andcell.f
), it will write the formula element but not the value element. Should it write both?Pull request closed