-
Notifications
You must be signed in to change notification settings - Fork 40
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
Date values from xlsx file didn't convert to string properly #5
Comments
I think the fastest way is to set the cell to "text" type, to auto convert the date type to string, may I have a try~ |
the string But I've found the excel is using integer value type as date type from source file, which made it tricky to get the exact type. set cell type as "text" sounds like an option, thanks in advance! |
I'm read the document of xlsx format, to slove the problem has to parse another config and it has lots of rules, it may take days to try and test. |
thanks for take look into it! |
I'm not sure when I can finish it, I add it to my todo list, but my job is very busy these days, you may use the fast solution first. |
I'm not rely on it now, do it anytime you want. |
default.xlsx
above xlsx file has a date type value
01/09/2019
, when i useexcel.Read()
function to decode the xlsx row to string slice, i got string value43709
is there any way that i can get data types of each cell?
The text was updated successfully, but these errors were encountered: