-
-
Notifications
You must be signed in to change notification settings - Fork 592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Databook sheet title must be below 31 characters for XLSX #303
Comments
With Python 3.7.4, Tablib 0.14.0 and openpyxl 3.0.0: $ python3 303.py
/usr/local/lib/python3.7/site-packages/openpyxl/workbook/child.py:99: UserWarning: Title is more than 31 characters. Some applications may not be able to read the file
warnings.warn("Title is more than 31 characters. Some applications may not be able to read the file") Opening the file: Clicking Yes: Clicking View, this file opens in a text editor: <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recoveryLog xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><logFileName>Repair Result to test0.xml</logFileName><summary>Errors were detected in file ’/tmp/tablib/test.xlsx’</summary><repairedRecords summary="Following is a list of repairs:"><repairedRecord>Repaired Records: Worksheet properties from /xl/workbook.xml part (Workbook)</repairedRecord></repairedRecords></recoveryLog> I think all these warnings are probably enough and the user should avoid long titles. |
We could truncate to 31 chars while exporting and output a RuntimeWarning. |
Yeah, we could. I wonder, are there any applications that can read the file without any problem? |
Just to let you know I'm still here after all these years. Nothing useful to add to current discussion though. I'd vote for warnings too. |
On 2019-10-22 hugovk asked "I wonder, are there any applications that can read the file without any problem?" It's been a while, but if this is still relevant to you, you might try LibreOffice Calc. I'm using version 7.3.7.2 on Linux, and it opens such files with no problem. Then, when I try to open them with Excel later, Excel insists they're corrupted, but is able to open them after "repair." |
Hi,
for XLSX format, databook sheet title must be below 32 characters. If it is longer, you get a warning about a corrupted file when trying to open such file in Microsoft Excel (the original MS Excel from MS Office package).
Attached is out file and a minimal non-working code example.
This is the out file that I got on Python 3.6 and tablib 0.11.5.
test.xlsx
When I change the dataset title length to below 31 characters, everything goes back to normal.
The text was updated successfully, but these errors were encountered: