Every week I generate a large excel sheet using Python/Pandas. However, the xls writer in Pandas does not allow one to format the excel sheets likely because of the proprietary format. Currently, I have to go worksheet by worksheet in the newly generated file and copy the formatting from the sheet the week before which is a little obnoxious.
Is there a way (in order of preference):
- Copy all the formatting from one excel sheet to another in Python
- Format Paint all sheets from a workbook to a second workbook
- This would be making a sheet with formatting and links which I could update and than resave, but I'm hoping for a solution like (1) or (2).