drewhbestbuddy

Results 5 comments of drewhbestbuddy

This seems to work with the few test cases I tried. I added this to cell.go, not sure where it would be most appropriate. ```go // GetPopulatedCells provides a function...

@henryx Good to hear it is working for you. @mlh758 Yeah that makes more sense. Maybe something like this instead: ```golang // GetPopulatedCells provides a function to get the populated...

**Are you reading 'Number' values from an Excel file?** Excelize will read 'Number' values like "101,102" as "101102" and you can convert this to your desired format. To convert "12100122"...

I'm not finding how to retrieve the cell value type, or set a cell type excelize. It looks like the type is stored in ```xlsxC.T```, which is in xmlWorksheet.go, but...

No problem. Adding a function like this would allow you to retrieve the ```xlsxC.T``` type. ```golang // GetCellType provides a function to get excel cell type from cell. // //...