Skip to content
Advertisement

split a workbook into different workbooks with worksheets using python pandas

I have a list of transactions from the last 7 years in one big excel file. I m trying to create an excel workbook for each year that includes each months as worksheet.

Im using a column called ‘date’ that has each transactions recorded as MM/DD/YYY. I split that column to single out my years and months but Im stuck on how I can use them to get multiple workbooks (YYYYmoney.xlsx) that contain worksheets for each month.

here’s what I was able to get to but i got stuck when it came to nesting my for loop. Can anyone help?

JavaScript

Advertisement

Answer

I know this is a bit late, but perhaps better late than never…

I’m not sure what issue you ran into b/c it doesn’t really say, but I suspect your issue was b/c you created a new writer for each sheet instead of each workbook. You also tried to write all months for all years and didn’t create a new DF for each each year.

Without testing, I can’t say this is 100% working code, but I’d rearrange what you have to something like below. This should get you close.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement