You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prior to GH40230 it was possible to write to existing sheet using code like below. I would like to be able to do it again.
I use it to create excel files with overly compicated and/or regularly changing header requirements.
This was possible prior to previously mentioned enhancement. Only solution I can think of now is to initiate ExcelWriter with if_sheet_exists='new' and to copy everything from previously existing sheet before writing dataframe and to rename and delete sheets accordingly later.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
Prior to GH40230 it was possible to write to existing sheet using code like below. I would like to be able to do it again.
I use it to create excel files with overly compicated and/or regularly changing header requirements.
Describe the solution you'd like
Add
append
option forif_sheet_exists
parameterAPI breaking implications
New option for parameter shouldn't break API.
Describe alternatives you've considered
This was possible prior to previously mentioned enhancement. Only solution I can think of now is to initiate
ExcelWriter
withif_sheet_exists='new'
and to copy everything from previously existing sheet before writing dataframe and to rename and delete sheets accordingly later.The text was updated successfully, but these errors were encountered: