View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Activate/disactivate calculation in VBA

In VBA

Application.Calculation = xlCalculationAutomatic

and

Application.Calculation = xlCalculationManual

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Froggy" wrote in message
...
RealName: Hervé RICHARD

Hello NGs,

My table has so many formulas, that the VBA code I wrote gets disregarded
upon opening.
If I write Application.CalculateFullRebuild or press F9, the whole table
gets calculated only once...
How can I switch on or off the calculation ?

Thank you in advance for any constructive proposal.