Formulas & Screen Updating

  • Thread starter Thread starter sa
  • Start date Start date
S

sa

Through VBA I want to place a large number of formula in Excel without it
calculating the formula and also updating the screen. Is there a way to turn
off the calculation of all formula while you are doing this and screen
updating.

You can use

application.screenupdating=false

but when you place the formula in the cell Excel updates the screen.

How can I get over this?
Is there a global variable to turn off both screenupdating and
recalculation?

Thanks for any help
 
Sure.

Application.Calculation = xlCalculationManual
'
Application.Calculation = xlCalculationAutomatic

HTH. best wishes Harald
 
Herald

Sorry, meant to include this option but we still have the same issue. We did
turn calculation to manual.

Regards
 

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