Get emoty cells #79
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#79
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, can I get all cells(empty too)? I haven't found this possibility. Thanks!
There are some cases where excel generates stub cells. To see those files, set the sheetStubs option to true.
There are other cases where Excel does not store the information, like jagged arrays:
In a case like this, Excel won't generate stubs for B1,C1,C2. Do you want to see cells for those as well?
Also, how do you want to handle merge cells? Should you see empty cells for the other parts of a merge?
Thanks @SheetJSDev , sheetStubs option help me.
Hello,
I guess I'm seeing the "other cases" behavior since I don't get empty cells even when setting
sheetStubs
totrue
. :)I would like to see empty cells for such cases. I'm not sure I understand the question about merge cells though, could you please explain? (for me an empty cell is one that has nothing in it when looked at in Excel...)
Edit: A quick glance suggests this isn't so trivial to implement because the cell I'm interested in (I3) doesn't appear in the
data
if I try to print it inparse_ws_xml
. I see H3 and J3, but nothing between them. Any idea if the missing information exists elsewhere, or if there's a better strategy than trying to figure how many columns were "skipped"?