Auto format date value problem #269
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#269
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?
On XLSX cell date format, when we use date from Brazil. It change the "correctly place" from numbers
On Brazil: 01/03/2015 = Day/Month/Year
On XLSX.read(): 03/01/2015 = Month/Day/Year
Is there some config option, so we can customize it. I do not want to change the CORE javascript. I notice this change must be made on
table_fmt[14]
@calebeaires did you find a solution to your problem. I also would like to avoid changing
table_fmt[14]
but it seems to be the cleanest solution I can find right now.@calebeaires @MrHubble technically format code 14 (
mm/dd/yy
) is supposed to apply locale-specific formatting. This part is not documented, so to fix this we need to blast through a bunch of locales, figure out the formats used in each locale, then devise a way to specify locale to the formatting library. @MrHubble what is your current locale and what format does Excel use in your computer?@reviewher
Locale:
Excel uses Australia (English), defaults to dd/mm/yy
We're adding an override option
dateNF
to the parsers so you can call something like:to override the local display but preserve the file