I\'m having a problem with a script not updating an excel file, and I reduced it to the following problem:
If I open an excel file, I can go to the Formulas tab and
Try this. Just for testing.
' Launch Excel...
CreateObject("WScript.Shell").Run "excel.exe"
' Wait for it to load...
WScript.Sleep 5000
' Get the running instance...
Set Excel = GetObject(, "Excel.Application")
' Open your workbook...
Excel.Workbooks.Open strPath
' Now go and click the Calculate button and see if it works.