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
tried to parse simple xls file with date field, received this dd/33/yyyy attached the file below, please, recheck
dd/33/yyyy
I used your code from ReadMe, with format, as described:
for _, cell := range row.GetCols() { xfIndex := cell.GetXFIndex() formatIndex := wb.GetXFbyIndex(xfIndex) format := wb.GetFormatByIndex(formatIndex.GetFormatIndex()) cells = append(cells, format.GetFormatString(cell)) fmt.Printf("Formatted: %v, String: %v, Type: %v\n", format.GetFormatString(cell), cell.GetString(), cell.GetType()) }
the output looks like this:
... Formatted: dd/33/yyyy" "12:33, String: 45114.523253182866, Type: *record.Number ...
and this is xls file example: wrong-date.xls
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tried to parse simple xls file with date field, received this
dd/33/yyyy
attached the file below, please, recheck
I used your code from ReadMe, with format, as described:
the output looks like this:
and this is xls file example:
wrong-date.xls
The text was updated successfully, but these errors were encountered: