VBA: Turn Off – Turn On Calculation
You can turn off automatic calculation with a macro by setting it to xlmanual. Use the following piece of VBA code:
Application.Calculation = xlManual
To turn on automatic calculation from VBA:
Application.Calculation = xlAutomatic
Can't get the tutorial to work for you? Need help with your code?
Get answers right away at our AE Excel Support Forums!
Get answers right away at our AE Excel Support Forums!



If the above doesn’t work for you (it didnt for me) try
Application.Calculation = xlCalculationManual
..
Application.Calculation = xlCalculationAutomatic