Disable/enable recalc

K

Kjeldc

I have workbook with lots of sheets and formulas and it takes forever to
recalc the workbook, whenever a new entry is made in a cell. Is it possible
to disable recalc for the whole workbook, and then start it with a
controlbutton?

Vista Ultimate/Office 2007
--
My programming is self-taught and
my teacher was not very experienced. :)

cheers,
Kjeld
 
M

Mike H

Hi,

You can disable manually or with code

Sub Yoursub()
Application.Calculation = xlCalculationManual
'your code
Application.Calculation=xlCalculationAutomatic

or
Office button - Excel Options - Fromulas and set to manual or automatic

Or attach the code above to a button on the Quick Access Toolbar (QAT) or on
the worksheet

Mike
 
B

B Lynn B

If you want your button to act like a toggle, then just assign this macro to
it:

Sub CalcTog()

If Application.Calculation = xlCalculationAutomatic Then
Application.Calculation = xlCalculationManual
Else
Application.Calculation = xlCalculationAutomatic
End If

End Sub
 
R

Rick Rothstein

Here is another way to write your toggle macro (a one-liner)...

Sub CalcToggle()
Application.Calculation = xlCalculationManual + xlCalculationAutomatic - Application.Calculation
End Sub
 
K

Kjeldc

Thanks a'lot :)
--
My programming is self-taught and
my teacher was not very experienced. :)

cheers,
Kjeld


"Mike H" skrev:
 

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

Similar Threads

Copy range with offset 8
Recalc Time 5
Recalc on HUGE workbook 1
Venting 2
Multithreading bug? 4
Questions about Strange ReCalc Behavior 2
calculation 2
Custom Function Problems when multiple workbooks are open 1

Top