Replies: 2 comments 2 replies
-
Thanks for your feedback, could you provide more details and spreadsheet attachments without confidential info? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I have fixed this issue on commit |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
i was trying to use github.com/xuri/excelize/v2 for reading xlsx and convert them to csv. it is working fine for most of my cases.
except for the cell values contain 'FALSE' converted to '0' by excelize instead of treating it as a string value. would you suggest me on this.
below is the code snippet.
//i have tried with out excelize Options, but the behavior did not change
efile, err := excelize.OpenFile(excelFile, excelize.Options{
RawCellValue: true,
})
rows, err := efile.GetRows(sheetName)
for _, row := range rows {
// logic to read field values and write them to csv file
}
Thanks,
Sankar
Beta Was this translation helpful? Give feedback.
All reactions