' Create a new instance of Excel.
Set objExcel = CreateObject("Excel.Application")
' Show the instance of Excel on the screen.
objExcel.Visible = True
' Open a file named SampleFile.xls
objExcel.workbooks.Open "\\Ntfrfddls08\CCT_Share\Project Reports\Prioritized Demand List\Prioritized Demand List_Temp.xlt", 3
Here is my code. For some reason when I open a file it does not update my external references (msquery using data from an access database).
I looked up this option in the object library, do i have it wrong? What is correct?
Thanks in advance for any responses!
Set objExcel = CreateObject("Excel.Application")
' Show the instance of Excel on the screen.
objExcel.Visible = True
' Open a file named SampleFile.xls
objExcel.workbooks.Open "\\Ntfrfddls08\CCT_Share\Project Reports\Prioritized Demand List\Prioritized Demand List_Temp.xlt", 3
Here is my code. For some reason when I open a file it does not update my external references (msquery using data from an access database).
I looked up this option in the object library, do i have it wrong? What is correct?
Thanks in advance for any responses!