I have two versions of excel in my Windows machine: 2010 and 2013, the defaulted version in windows is 2013, (which I tend not to use do to incompatibilities with some old macros), when I use xlwings to open an excel file, it does in the 2013 version, how can I tell xlwings to use the 2010 version instead?
This is my code:
import xlwings as xw
wb = xw.Book('FileName.xlsx')
Thanks in advance for your help and comments!