Suspending Updates

John McGraw

Board Regular
Joined
Feb 25, 2002
Messages
76
Is there a way to suspend cell updates from VBA temporarily?

I am finishing up some VBA code that creates a report, it runs fine. But when I include formulas and analysis in the spreadsheet for this report, the VBA program runs VERY SLOW. The automatic cell updates between each data change are just too much.

I want to turn cell updates off at the beggning, and turn them back on at the end. How can I do that?

Thanks much,

John
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
On 2002-03-04 18:36, John McGraw wrote:
Is there a way to suspend cell updates from VBA temporarily?

I am finishing up some VBA code that creates a report, it runs fine. But when I include formulas and analysis in the spreadsheet for this report, the VBA program runs VERY SLOW. The automatic cell updates between each data change are just too much.

I want to turn cell updates off at the beggning, and turn them back on at the end. How can I do that?

Thanks much,

John

You could try this:

Code:
Calculate
With Application
    .Calculation = xlManual
End With
'the rest of your code
With Application
    .Calculation = xlAutomatic
End With

Regards,
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,207
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top