Skip to content
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

BUG: engine calamine lost 0 when read_excel from vlookup cell #61186

Open
2 of 3 tasks
ryjfgjl opened this issue Mar 27, 2025 · 3 comments
Open
2 of 3 tasks

BUG: engine calamine lost 0 when read_excel from vlookup cell #61186

ryjfgjl opened this issue Mar 27, 2025 · 3 comments
Labels
Bug IO Excel read_excel, to_excel

Comments

@ryjfgjl
Copy link

ryjfgjl commented Mar 27, 2025

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

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)

Issue Description

Excel data
Image

df:
Image

Expected Behavior

change engine to openpyxl is correct

Image

Installed Versions

2.2.3

@ryjfgjl ryjfgjl added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Mar 27, 2025
@asishm asishm added the IO Excel read_excel, to_excel label Mar 28, 2025
@asishm
Copy link
Contributor

asishm commented Mar 28, 2025

Thanks for the report. Are you able to share the excel file (preferably without the vlookups) or code to generate the excel file?

@rhshadrach rhshadrach added Needs Info Clarification about behavior needed to assess issue and removed Needs Triage Issue that has not been reviewed by a pandas team member labels Mar 28, 2025
@ryjfgjl
Copy link
Author

ryjfgjl commented Mar 31, 2025

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

@dimastbk
Copy link
Contributor

dimastbk commented Apr 2, 2025

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.

@asishm asishm removed the Needs Info Clarification about behavior needed to assess issue label Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug IO Excel read_excel, to_excel
Projects
None yet
Development

No branches or pull requests

4 participants