-
-
Notifications
You must be signed in to change notification settings - Fork 33
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
'ReadOnlyWorksheet' object has no attribute 'merged_cells' #33
Comments
which version of openpyxl? |
openpyxl.version=='2.5.14' |
Unfortunately if self.skip_hidden_row_and_column or self.detect_merged_cells: will not work as expected too because SlowSheet skips hidden columns and rows anyway. |
Then, should I code against this combination? It is down to openpyxl, which does not support both. |
At first glance openpyxl returns all rows and then pyexcel-xlsx skips hidden ones right here: pyexcel-xlsx/pyexcel_xlsx/xlsxr.py Line 87 in 54ee10c
May be in some cases it will be ok to not to skip them, but I didn't look into that enough to assert anything. |
Opening xlsx file with
rs = pyexcel.iget_book(file_name='./some_file.xlsx', skip_hidden_row_and_column=False, detect_merged_cells=True)
causes an error'ReadOnlyWorksheet' object has no attribute 'merged_cells'.
May be at
pyexcel-xlsx/pyexcel_xlsx/xlsxr.py
Line 201 in 54ee10c
not
?
Thank you for the excellent library, by the way :-)
The text was updated successfully, but these errors were encountered: