Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

enter image description here

All help is appreciated!

share|improve this question
From VBA help, for RefreshAll Objects that have the BackgroundQuery property set to True. Perhaps you want to Calculate instead? – brettdj Sep 27 '12 at 7:57
So ActiveWorkbook.Calculate? Well I have VLOOKUPS, etc that I want to 'update'. – t.thielemans Sep 27 '12 at 8:02
try Application.CalculateFull - it will calculate all open workbooks in that Excel instance – brettdj Sep 27 '12 at 8:25
thanks, just found that too. if you like post it as an answer, if not I will just delete this :) – t.thielemans Sep 27 '12 at 8:26

1 Answer

up vote 3 down vote accepted

Rather than a RefreshAll option you are looking for a Calculate option

I suggest you use Application.CalculateFull to calculate all formulae

This link from Charles Williams on Excel Calculation Methods may prove useful

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.