You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a weird issue with a file containing all the data, except that the first (head) row is all nils.
Here's my code:
def load_sheet(_xlsx_file_path = path) do
[ok: table_id] = Xlsxir.multi_extract(path)
result = Xlsxir.get_list(table_id)
Xlsxir.close(table_id)
result
end
I suspect there's something broken about the xlsx file, but I can't be sure. I tried to produce a version with only the head row both in LibreOffice and in some version of Excel, but when I do that, I read the proper head row.
I can't disclose the file here because it contains PII.
I peeked into the ets table and saw that the head row was stored there with those nil values already.
Do you have any idea what might cause this?
The text was updated successfully, but these errors were encountered:
Hello,
I have a weird issue with a file containing all the data, except that the first (head) row is all nils.
Here's my code:
I suspect there's something broken about the xlsx file, but I can't be sure. I tried to produce a version with only the head row both in LibreOffice and in some version of Excel, but when I do that, I read the proper head row.
I can't disclose the file here because it contains PII.
I peeked into the ets table and saw that the head row was stored there with those nil values already.
Do you have any idea what might cause this?
The text was updated successfully, but these errors were encountered: