Converting .xlsx To .xls In Python With Win32com.client Module
I am trying to find a way to convert many files from .xlsx to .xls and have been trying Python with the win32com.client module: import win32com.client xl = win32com.client.Dispatc
Solution 1:
I am not sure what is wrong, your code works for me. I used a sample file and tested it, it works. Maybe try inserting print("Checking") and input() before and after the SaveAs command to check whether the save as command is executed or not.
Post a Comment for "Converting .xlsx To .xls In Python With Win32com.client Module"