-
Notifications
You must be signed in to change notification settings - Fork 54
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
StyleFrame.read_excel ignores merge cells #76
Comments
Hi. Consider the sheet: Then reading with both df = pd.read_excel('merged_cells_test.xlsx')
print(df)
sf = StyleFrame.read_excel('merged_cells_test.xlsx')
print(sf) outputs
If you notice any different behavior please add some more information, such as how the sheet you are trying to read looks like and what dataframe you get after reading. |
Hi, I appreciate your quick response. I need to preserve the Style (cell color, format, merged cells, header format, etc.) when I'm merging two excels. but while reading excel using Sample input has below content But Is there any way to read the excel with preserving merged cell ? Thanks, |
As a temp workaround, I created a temp branch that will preserve merged cells data when using You can give it a try by
|
Hi team, thanks for your kind help, I have tested enhancement and it is working as expected. regards, |
Hi Team,
trying to read excel having few merged cells, noticed StyleFrame.read_excel ignores merge cells
Python 3.8.3
StyleFrame 3.0.2
openpyxl 3.0.2
pandas 1.0.5
Any fix or workaround ?
Thanks,
Nandlal
The text was updated successfully, but these errors were encountered: