Is there any way to create an instance of the Excel 2007 application using VBA in Excel 2003? That is, if I have a workbook open in Excel 2003, can I use VBA in that workbook to run Excel 2007 and manipulate a worksheet?
I tried using:
Dim xl2007 As Excel.Application
Set xl2007 = CreateObject("Excel.Application")
But that just creates another instance of Excel 2003, and I don't know how to make the CreateObject run Excel 2007 instead.
I tried using:
Dim xl2007 As Excel.Application
Set xl2007 = CreateObject("Excel.Application")
But that just creates another instance of Excel 2003, and I don't know how to make the CreateObject run Excel 2007 instead.