vote up 1 vote down star

How do you get spreadsheet data in Excel to recalculate itself from within VBA, without the kluge of just changing a cell value?

flag

3 Answers

vote up 1 vote down check

The following lines will do the trick:

ActiveSheet.EnableCalculation = False  
ActiveSheet.EnableCalculation = True

Edit: The .Calculate() method will not work for all functions, I tested it on a sheet with add-in array functions. The production sheet I'm using is complex enough I don't want to try and test the .CalculateFull() method, so it may work.

link|flag
Actually, there are .Calculate() and .CalculateFull() methods for that, on different levels. – GSerg Sep 30 '08 at 19:15
I've tested Calculate on a sheet, and it not all functions in a cell recalculate. You can also do it by switching the 'dirty' bit, but I found this to be the easiest solution. – Lance Roberts Sep 30 '08 at 19:26
vote up 0 vote down

This should do the trick...

'recalculate all open workbooks
Application.Calculate

'recalculate a specific worksheet
Worksheet(1).Calculate

' recalculate a specific range
Worksheet(1).Columns(1).Calculate
link|flag
see comment on my answer – Lance Roberts Sep 30 '08 at 19:27
vote up 0 vote down

You might also try

Application.CalculateFull

or

Application.CalculateFullRebuild

if you don't mind rebuilding all open workbooks, rather than just the active worksheet. (CalculateFullRebuild rebuilds dependencies as well.)

link|flag

Your Answer

Get an OpenID
or

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