-
Notifications
You must be signed in to change notification settings - Fork 22
String columns are read as None #43
Copy link
Copy link
Open
Labels
Milestone
Description
Hi, i am attempting to read a file (also as attachment in this ticket). The integer column (titled Site) is read correctly, but the fields containing string values are all read as String.
I was not able to find a cause for this in the source code. This file is delivered to me on a regular basis, and we have no control over the format the file is provided in. So requesting to export it as xlsx or csv is not really an option.
As github does not support uploading xlsb files, i compressed in a zip. So the zip is not the direct content of the file.
Reproducing:
wb = open_workbook('Netwerk modernisatie week 49.xlsb')
sheet = wb.get_sheet(1)
print(next(sheet.rows()))
[Cell(r=0, c=0, v=None), Cell(r=0, c=1, v=None), Cell(r=0, c=2, v=None), Cell(r=0, c=3, v=None), Cell(r=0, c=4, v=None)]The first row of the file contains strings. The second row also contains some integer values, which are read correctly.
What am i doing wrong?
Reactions are currently unavailable