Reading data (Number) not populating 'Text' (cell.w) property #3016
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
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#3016
Loading…
Reference in New Issue
Block a user
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?
Hi,
Not sure if this is the right way to check whether it is a bug or not. I am trying to read an excel file, putting the option to
cellNF:true
just to see the formats for numbers. For some cells, like the 'H516', is not coming up thecell.w
, the 'Text' property. Opening the xml files inside, I can see this cell has an attached style. Can I ask for help?I noticed the docs say this property will be populated "if applicate". I thought it would always be populated for Number.
Thanks,
Rodrigo
Thanks for sharing!
The formatted text doesn't exist in the file. There is a separate function that takes the number format and the value and generates the formatted text.
There are a few custom number formats in the file (e.g.
###,###,##0.00
) that are not currently supported by the formatting library. We'll take a closer look.Thanks for the explanation!