-
-
Notifications
You must be signed in to change notification settings - Fork 8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sheet_to_json: date value is printed the day before #1435
Comments
This bug might be linked to #1212. I've created a pull request ( SheetJS/ssf#38 ) to fix the problem |
This should have been fixed in v0.16.0, please update and report back if there are issues. |
It is not fixed yet, using 0.16.9 version |
it still have the issue at version : 0.18.7 |
Is this still not fixed? I am facing the same error. |
Hi Team,
Recently I am working about reading data which in excel sheet has the value of Date also Value(decimal value).
I am using xlsx -v 0.14.1. My purpose is to get the raw data from the excel file (exact date and value which are filled excel )
Sample Data:
Date | Value
12/31/2016 | -1234567890.12345
12/31/2017 | 1234567890.12345
After I uploaded the excel file, I got:
2016-12-30 -1,234,567,890.12345
2017-12-30 1,234,567,890.12345
I find out that the date value is printed the day before. I have checked the value before converting to Json, the date value is Fri Dec 30 2016 23:59:56 GMT+0700 (Indochina Time) then once it is converted to Json the value is 2016-12-30
Is there any solution referring to this case?
The text was updated successfully, but these errors were encountered: