Search code examples
pythonexcelxlrdxlwtxlutils

Python: Modifying Excel files while maintaing formatting


Is there any way to modify a few cells in an existing Excel file without losing formatting, and without using xlutils?

I have access to xlwt, and xlrd, but not xlutils.

Thank you!


Solution

  • Although its use is deprecated nowadays, you can use from win32com.client module which contains "dispatch". It preserves formatting. Example :

    from win32com.client import Dispatch
    xlApp = Dispatch("Excel.Application")
    xlApp.Visible=1
    book = xlApp.Workbooks.Open("FileName")
    sheet1 = book.Worksheets(1)
    sheet1.Cells(1,1).Value="ABC"