Closed
Description
In the docs it says:
Supports xls, xlsx, xlsm, xlsb, and odf file extensions read from a local filesystem or URL. Supports an option to read a single sheet or a list of sheets.
When I try to read a xlsb file with specifying engine='openpyxl'
I get the next error:
df = pd.read_excel(r"file.xlsb",engine='openpyxl')
openpyxl does not support binary format .xlsb, please convert this file to .xlsx format if you want to open it with openpyxl
I do have the openpyxl module installed
Thank you