We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While parsing xlsx file, the dates are returned as Fixnum format.
The excel files for which the property "Use 1904 date system" is set to true from file options. To get the original-date i have added,
Date.new(1904) + fixnum_int
But same code not works if the above property is not set. it gives the date 4 years greater than actual date.
Can you suggest me how to work around this issue or would i be able to distinguish the file 1900/1904 format, please guide. Thanks
The text was updated successfully, but these errors were encountered:
A new version of the gem has been released. Can you try and see if your issue has been resolved?
Sorry, something went wrong.
Test 1904 date system weshatheleopard#53
22ddebf
Weather the test gets merged or not in the code I believe the issue can be closed since the tests are passing.
Fix weshatheleopard#53
381355f
Fix weshatheleopard#53 again...
4e8b20f
No branches or pull requests
While parsing xlsx file, the dates are returned as Fixnum format.
The excel files for which the property "Use 1904 date system" is set to true from file options.
To get the original-date i have added,
Date.new(1904) + fixnum_int
But same code not works if the above property is not set. it gives the date 4 years greater than actual date.
Can you suggest me how to work around this issue or would i be able to distinguish the file 1900/1904 format, please guide. Thanks
The text was updated successfully, but these errors were encountered: