How do you get spreadsheet data in Excel to recalculate itself from within VBA, without the kluge of just changing a cell value?
|
|
The following lines will do the trick:
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. |
||||
|
|
|
This should do the trick...
|
||
|
|
|
You might also try
or
if you don't mind rebuilding all open workbooks, rather than just the active worksheet. ( |
||
|
|
