Python convert (read & save) excel xlsx to xls

18,268

First things first: Why do you want to convert to .xls? This is usually a sign that you are using outdated tools somewhere in the process, and it might be better to use newer tools rather than convert the data to an older format.

But, if you really need to convert to .xls while preserving formatting, your only realistic choice at this time is to use Excel itself. You didn't say which platform you are using, but if it's Windows or Mac, and you have Excel installed, then the most straightforward way to automate Excel is probably xlwings. In principle this will allow you to use Python to open the .xlsx file in Excel (an actual, running instance of Microsoft Excel) and do "save as" to a .xls file.

I say "in principle" because I don't personally know how to do it in xlwings. (I don't really use that package.) Under the covers, xlwings is relying on pywin32 on Windows and appscript on Mac, so you could use those lower-level packages directly.

For example, if you are on Windows, you could do this:

from win32com.client import Dispatch

xl = Dispatch('Excel.Application')
wb = xl.Workbooks.Add(my_xlsx_excel_file)
wb.SaveAs(my_xlsx_excel_file[:-1], FileFormat=56)
xl.Quit()

The 56 is a magic constant indicating Excel 97-2003 format (for Windows).

Naturally, there should be a corresponding way to do this on a Mac with appscript. Just be aware that the file format constants may be different than on Windows.

Share:
18,268
ragesz
Author by

ragesz

Data scientist at Dmlab, Budapest, Hungary.

Updated on June 21, 2022

Comments

  • ragesz
    ragesz almost 2 years

    How can I convert an existing xlsx Excel file into xls while retaining my Excel file formatting? I use Anaconda Python 3, so I'm not sure I can use xlutils... I was not able to install it via conda install xlutils because of lots of incompatibilities. So now I use this code without the xlutils.copy():

    import xlrd, xlwt
    
    wb = xlrd.open_workbook(my_xlsx_excel_file)
    # wb = xlutils.copy(wb)
    wb.save(my_xlsx_excel_file[:-1])
    

    And I get this error:

    AttributeError: 'Book' object has no attribute 'save'
    

    Thank you!

  • ragesz
    ragesz almost 8 years
    Thank you! But I'm afraid that openpyxl can not handle xls format only xlsx. I can write wb.save("file.xls") or even wb.save("file.pdf") but the saved file will be in xlsx format :(
  • Sidara KEO
    Sidara KEO about 6 years
    this one seem just rename file only