Set oExcel = CreateObject("Excel.Application")
oExcel.Visible = True
oExcel.DisplayAlerts = False
oExcel.AskToUpdateLinks = False
Set oWorkBook = oExcel.Workbooks.Open("filelocationhere")
oWorkBook.RefreshAll
oWorkBook.CalculateUntilAsyncQueriesDone << I get runtime error 438 - Object doesn't support this property or method
oWorkBook.Save
oWorkBook.Close
oExcel.Quit
Set oWorkBook = Nothing
Set oExcel = Nothing
oExcel.Visible = True
oExcel.DisplayAlerts = False
oExcel.AskToUpdateLinks = False
Set oWorkBook = oExcel.Workbooks.Open("filelocationhere")
oWorkBook.RefreshAll
oWorkBook.CalculateUntilAsyncQueriesDone << I get runtime error 438 - Object doesn't support this property or method
oWorkBook.Save
oWorkBook.Close
oExcel.Quit
Set oWorkBook = Nothing
Set oExcel = Nothing