Stopping formula computations during entering data...

  • Thread starter Thread starter Volker Hetzer
  • Start date Start date
V

Volker Hetzer

Hi!
We've got a sheet with lots of data and want to insert lots of
formulas using VBScript. Now, every time we insert a formula
the whole sheet gets recomputed and the thing runs three hours.
Is there a way to make Excel stop calculating and turn it on later?
Lots of Greetings!
Volker
 
Tools>Options>Calculation, check Manual.
In VBA: Application.Calculation = xlManual
 
Hi Volker,

Try:

Application.Calculation = xlCalculationManual

'Your code

Application.Calculation = xlCalculationAutomatic
 
Norman said:
Hi Volker,

Try:

Application.Calculation = xlCalculationManual

'Your code

Application.Calculation = xlCalculationAutomatic
Thanks a lot, both of you!
Volker
 

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