PDA

View Full Version : Application.ScreenUpdating = False not working



LalitPandey87
10-10-2011, 08:55 AM
Hi,

Many thanx for my previous post for the best replies.
Now i am stuck with Application.ScreenUpdating.

My Code is:

Application.ScreenUpdating = False

but it's not working it always being true.
:confused:

Admin
10-10-2011, 09:59 AM
Hi,

In each sub routine set the screen updating like


Dim lngSU As Long

With Application
lngSU = .ScreenUpdating
.ScreenUpdating = False
End With

'Your code

Application.ScreenUpdating = lngSU

LalitPandey87
11-08-2011, 08:55 AM
Thanx for this useful function.
Working!
:cool: