We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786e7f6 commit 7308701Copy full SHA for 7308701
pyexcel_xlsx/xlsx.py
@@ -61,7 +61,7 @@ def _cell_value(self, row, column):
61
"""
62
actual_row = row + 1
63
cell_location = "%s%d" % (get_columns(column), actual_row)
64
- return self.native_sheet.cell(cell_location).value
+ return self.native_sheet[cell_location].value
65
66
67
class XLSXBook(BookReader):
0 commit comments