I'm having a problem on attempting to read a complex xls file with dozen sheets. Here is a traceback (I already fixed one by deleting some cell content):
```
File "Rapport audit.py", line 125, in generate
with pd.ExcelWriter(
File "pandas/io/excel/_openpyxl.py", line 66, in __init__
self.book = load_workbook(self.handles.handle, **engine_kwargs)
File "openpyxl/reader/excel.py", line 311, in load_workbook
reader.read()
File "openpyxl/reader/excel.py", line 278, in read
self.read_worksheets()
File "openpyxl/reader/excel.py", line 254, in read_worksheets
charts, images = find_images(self.archive, rel.target)
File "openpyxl/reader/drawings.py", line 39, in find_images
cs = get_rel(archive, deps,
rel.id, ChartSpace)
File "openpyxl/packaging/relationship.py", line 145, in get_rel
obj = cls.from_tree(tree)
File "openpyxl/descriptors/serialisable.py", line 87, in from_tree
obj = desc.expected_type.from_tree(el)
File "openpyxl/descriptors/serialisable.py", line 87, in from_tree
obj = desc.expected_type.from_tree(el)
File "openpyxl/descriptors/serialisable.py", line 87, in from_tree
obj = desc.expected_type.from_tree(el)
[Previous line repeated 1 more time]
File "openpyxl/descriptors/serialisable.py", line 103, in from_tree
return cls(**attrib)
File "openpyxl/chart/layout.py", line 56, in __init__
self.y = y
File "openpyxl/descriptors/nested.py", line 35, in __set__
super(Nested, self).__set__(instance, value)
File "openpyxl/descriptors/base.py", line 104, in __set__
raise ValueError("Min value is {0}".format(self.min))
ValueError: Min value is -1
```
This occurs on a sheet with several charts. I understand this occurs because the file, though generated by XL itself, doesn't follow the spec strictly, right?
However, I still would like to read it... For what it's worth, my use case is to read this complex XL file, regenerate a single (simple) sheet within it then close it. Isn't there a way to read/write this single sheet and/or to ignore reading errors? In my case the rewritten sheet is used as source in several other sheets, dunno the implication of this...