Toggle Autocalculate On/Off

  • Thread starter Thread starter Billy
  • Start date Start date
B

Billy

Using XL 2002 for Windows, I sometimes work with several files that
need to manually calculate, while also using files I want to
automatically calculate. Is there a macro i can use to toggle
auotcalculate on/off as I need it. It is troublesome having to go to
"Options" every time.

Thanks
Billy
 
Assign a key combo to:
Sub ToggleCalc()
With Application
If .Calculation = xlCalculationAutomatic Then
.Calculation = xlCalcalucationManual
Else
.Calculation = xlCalculationAutomatic
End If
End With
End Sub
(Untested)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top