xlsxreader icon indicating copy to clipboard operation
xlsxreader copied to clipboard

A low-memory high performance library for reading data from an xlsx file

Results 4 xlsxreader issues
Sort by recently updated
recently updated
newest added

Here is the code that I have written to read the attached file: package main import ( "bytes" "encoding/csv" "fmt" "log" "github.com/thedatashed/xlsxreader" ) // copy of https://godoc.org/github.com/tealeg/xlsx#ColLettersToIndex // column is...

If a cell has the link in it, as plain text, then all is well. However, if the cell has text with a link associated with it that link is...

Is there a way in the library to view merged cells, because at the moment the library skips the merged cells and return them as empty.

I have a spreadsheet (attached) that has 81 columns, yet some of the rows read only 79 or 80 columns . I have tried Excelize and it also has the...