I have an excel 2007 file(*.xlsx) which is to be opened through a python script. But the problem is I have two versions of MS office (2003 and 2007) installed in my computer. Although I tried to make Excel 2007 as the default application to open xlsx files, the win32com.client is trying to open my xlsx file using Excel 2003. Also this is reverting back Excel 2003 as the default application.
Is there a way to force the win32com.client to choose Excel 2007 to open xlsx files?
For Excel 2013, you can type:
o = win32com.client.Dispatch("Excel.Application.15")
since the program is located somewhere like:
C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE
Since I do not have any other version installed, I guess it works if you just replace the 15
by the version you need. You can see the path of the binary that is launched by the command with eg. process explorer.
After having tried this:
excel15 = win32com.client.dynamic.Dispatch("Excel.Application.15")
excel14 = win32com.client.dynamic.Dispatch("Excel.Application.14")
which yields objects like this:
>> print excel15
<COMObject Excel.Application.15>
>> print excel14
<COMObject Excel.Application.14>
only one instance of Excel (14) is visible in process explorer. Doing
excel15.Visible = True
confirms that.
It turns out that using automation for controlling both versions of Excel is impossible.
Checking the Registry, the programs (Excel.Application.14
and 15
) share the same CLSID. An there is only one LocalServer
per CLSID (HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Wow6432Node\CLSID\{00024500-0000-0000-C000-000000000046}\LocalServer
on my computer).
This LocalServer points to the last installed version, Excel14 (trial) on my computer. This is the only object created by the Dispatch
call.
All this is explained here (§ "Using Automation to Control Microsoft Excel").
As I said, this LocalServer
points to the last installed version. There is hence a chance you can achieve what you want:
LocalServer
, and the default application of the Excel.Application
entry), but I will prefer the following simple solutionThe following should work since I have tested it although not with two versions of Excel simultaneous installed but instead forcing Excel files to open up in Word (aka WINWORD.exe). Replace the path to whichever version of Excel you want to be used:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.xlsx]
"Content Type"="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
@="Excel.Sheet.Custom"
"PerceivedType"="document"
[HKEY_CLASSES_ROOT\.xlsx\Excel.Sheet.Custom]
[HKEY_CLASSES_ROOT\Excel.Sheet.Custom\shell\Open]
@="&Open"
[HKEY_CLASSES_ROOT\Excel.Sheet.Custom\shell\Open\command]
@="\"C:\\Program Files\\Microsoft Office\\Office14\\EXCEL.EXE\" /dde"
[HKEY_CLASSES_ROOT\Excel.Sheet.Custom\shell\Open\ddeexec]
@="[open(\"%1\")]"
[HKEY_CLASSES_ROOT\Excel.Sheet.Custom\shell\Open\ddeexec\application]
@="Excel"
[HKEY_CLASSES_ROOT\Excel.Sheet.Custom\shell\Open\ddeexec\topic]
@="system"
Save the above reg
script after replacing C:\\Program Files\\Microsoft Office\\Office14\\EXCEL.EXE
with the path to the actual EXCEL.exe
you'd like to use as default(be careful with the \\
s), in a you_name_it.reg
and run/merge/double-click it. It will ask you for confirmation, give it an affirmative and check.
I have not tried this, but perhaps you could launch the Excel version you want using something like
desired_excel_path = 'C:\\Program Files\\Microsoft Office\\Office14\\EXCEL.EXE'
file_path = 'C:\\myfile.xlsx'
subprocess.call([desired_excel_path , file_path])
(or whatever is the subprocess method of launching Excel manually that works) and thereafter try
wb = win32com.client.GetObject(file_path)
to obtain the running instance.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With