Dense Worksheet Representation #34
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#34
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?
You guys can make a option to choose range type,
A-1
notation or[Sheet][Line][Column]
, it would be nice 👍Well, i'm making a fastest-as-possible xlsx search, i got 2 files and each one had like 10 sheets, when a cell match with search the sheet and line which cell is present is returned, i made a wrapper of your lib which treat that for me, but i think it would be helpful as a implementation.
@schleumer Are you walking in row-major (A1,B1,...,??1,A2,B2,...) or column-major (A1,A2,...,A##,B1,B2,...) order?
@schleumer we didn't flip the default, but if you pass
dense:true
as an option to the various read functions (XLSX.read
,XLSX.readFile
, or any of the utilities that generate a worksheet or workbook) the generated worksheets are arrays. The writers and various utils have been updated to handle both types of worksheets. We were surprised by the performance difference but are hesitant to change the default until we are sure it won't break older browser versions.