I have created a macro to refresh my workbook (recalc values, refresh links, etc).
The code to refresh links works fine but when it hits the RefreshAll I get the following error.
ActiveWorkbook.UpdateLink Name:="F:\klanten.xlsm", Type:=xlExcelLinks
ActiveWorkbook.RefreshAll

All help is appreciated!
RefreshAllObjects that have the BackgroundQuery property set to True. Perhaps you want toCalculateinstead? – brettdj Sep 27 '12 at 7:57Application.CalculateFull- it will calculate all open workbooks in that Excel instance – brettdj Sep 27 '12 at 8:25