Use openpyxl to edit a Excel2007 file (.xlsx) without changing its own styles?

后端 未结 2 1406
我在风中等你
我在风中等你 2020-12-03 11:32

I have a .xlsx file to edit, I found openpyxl could manipulate Excel 2007 files. I only want to change the value in some cells and leave other settings unchanged.

Bu

相关标签:
2条回答
  • 2020-12-03 11:43

    Now openpyxl cannot handle styles good enough, so I tried using pywin32 COM and got the solution. Here is a good python-excel-mini-cookbook to use pywin32 COM for Excel

    0 讨论(0)
  • 2020-12-03 11:58

    Styles aren't fully supported yet in openpyxl. Make sure you're using the latest version (1.5.3 as of now), as it recently improved its style capabilities.

    The xlwt has more complete formatting for .xls files, but doesn't support xlsx as of yet.

    0 讨论(0)
提交回复
热议问题