Screenupdating Still Updates...

jswhip

Board Regular
Joined
Jan 19, 2005
Messages
69
I have used the following code numerous times and it works as advertised (Excel doesn't update until enabled):

Application.ScreenUpdating = False
Application.Calculation = xlManual
Application.DisplayAlerts = False

However, I've run into a situation where the screen still updates even after setting ScreenUpdating = False.

Any hints on what to look for?
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
what other code is there,

You may need to move the application.screenupdating further up the macro
 
Upvote 0
I've isolated to the point where the screen starts updating. Unfortunately, I'm not sure why the code starts updating again (end of attached code):

Sub CMBSSurveillance()

frmStatus.Show vbModeless

Application.ScreenUpdating = False
Application.Calculation = xlManual
Application.DisplayAlerts = False
Application.EnableEvents = False

For Each wksht In ActiveWorkbook.Worksheets

If wksht.Name = "CMBSConduitHoldings" Or _
wksht.Name = "Rating Graphs" Then
Sheets(wksht.Name).Delete
End If

Next wksht

Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = "CMBSConduitHoldings"

Worksheets("_1010q_CMBSSurveillance").Activate
Call runactiveqsheet(True)

FormatCMBSSurveillance

frmStatus.Hide

Application.ScreenUpdating = True
Application.Calculation = xlAutomatic
Application.DisplayAlerts = True
Application.EnableEvents = True

End Sub

Sub FormatCMBSSurveillance()

Worksheets("CMBSConduitHoldings").Activate
Dim LastCellRow As Double

Columns("B:B").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
 
Upvote 0
my understaning of aplication.screenupdating is that it resets to true at the ed of a macro anyway so leave it out and just put false at the very beginning of the macro
also you call another macro during this one amybe you need to put the application.screenupdating in that macro too
 
Upvote 0
Thanks for the feedback.

The call to one macro is an add-in, thus I can't turn off the screen updating inside it. I commented out the code to the external add in, yet I still see the screen updating.

I've tried experimenting with making the sheet not visible, but then the calculations don't work.

Is there a property that I can display where I can verify that the screenupdating value?
 
Upvote 0
The sub you call
FormatCMBSSurveilance

seems to be right underneath the macro you are running
 
Upvote 0

Forum statistics

Threads
1,214,791
Messages
6,121,611
Members
449,038
Latest member
apwr

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