We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
df = pd.read_excel(r'C:\Users\ryjfgjl\Desktop\汽车计提1-2月明细(1).xlsx', sheet_name=3, na_filter=False, engine='calamine', dtype=object) print(df)
Excel data
df:
change engine to openpyxl is correct
2.2.3
The text was updated successfully, but these errors were encountered:
Thanks for the report. Are you able to share the excel file (preferably without the vlookups) or code to generate the excel file?
Sorry, something went wrong.
import pandas as pd
file = r'C:\Users\ryjfgjl\Desktop\test.xlsx' df_without_vlookup = pd.read_excel(file, engine='calamine', sheet_name='Sheet1', dtype=object) print(df_without_vlookup) df_with_vlookup = pd.read_excel(file, engine='calamine', sheet_name='Sheet2', dtype=object) print(df_with_vlookup)
test.xlsx
Hi. It has been fixed in upstream tafia/calamine#472, but it hasn't been released yet.
UPD: Should be fixed in https://github.com/dimastbk/python-calamine/releases/tag/v0.3.2.
No branches or pull requests
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
Excel data

df:

Expected Behavior
change engine to openpyxl is correct
Installed Versions
2.2.3
The text was updated successfully, but these errors were encountered: