Steven has attended:
Excel VBA Intro Intermediate course
Screen Flickering
How do you stop the screen flickering?
RE: Screen Flickering
Hi Steven,
Thank you for the posting
Running VBA code may cause the screen to flicker as the monitor is the slowest part of the program and cannot keep up with the very fast changes taking place.
To switch off the screen until the program is run enter the following code line at the beginning of the procedure:
Application.ScreenUpdating = False
The screen comes on automatically on completion of the program. If you require screen updating to resume before the end type
Application.ScreenUpdating = True
Tracy