Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I know I've seen this tip on this group before, but for the life of me I
can't even begin to think on how to do a Google search for it. How do I keep my Workbook and Worksheets from flashing and changing as my code runs? My code is working, but it's terrible on the eyes, makes me kind of dizzy. I know there's a simple statement that takes care of this, just can't remember what it is for the life of me. Anybody? Thanks! -gk |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.ScreenUpdating = False
' your code Application.ScreenUpdating = True Regards Trevor "TBA" wrote in message ... I know I've seen this tip on this group before, but for the life of me I can't even begin to think on how to do a Google search for it. How do I keep my Workbook and Worksheets from flashing and changing as my code runs? My code is working, but it's terrible on the eyes, makes me kind of dizzy. I know there's a simple statement that takes care of this, just can't remember what it is for the life of me. Anybody? Thanks! -gk |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
TBA,
Precede it by Application.DisplayAlerts = False reset it afterwards if there is more code, and not the end of the sub. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "TBA" wrote in message ... I know I've seen this tip on this group before, but for the life of me I can't even begin to think on how to do a Google search for it. How do I keep my Workbook and Worksheets from flashing and changing as my code runs? My code is working, but it's terrible on the eyes, makes me kind of dizzy. I know there's a simple statement that takes care of this, just can't remember what it is for the life of me. Anybody? Thanks! -gk |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops,
I mean Application.ScreenUpdating = False not DisplayAlerts as I said. Reset at end. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bob Phillips" wrote in message ... TBA, Precede it by Application.DisplayAlerts = False reset it afterwards if there is more code, and not the end of the sub. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "TBA" wrote in message ... I know I've seen this tip on this group before, but for the life of me I can't even begin to think on how to do a Google search for it. How do I keep my Workbook and Worksheets from flashing and changing as my code runs? My code is working, but it's terrible on the eyes, makes me kind of dizzy. I know there's a simple statement that takes care of this, just can't remember what it is for the life of me. Anybody? Thanks! -gk |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA macro runs fine, but freezes if I try to do ANYTHING else whileit runs | Setting up and Configuration of Excel | |||
vba code runs...need spaces ........ | Excel Discussion (Misc queries) | |||
One macro runs then it auto runs another macro | Excel Discussion (Misc queries) | |||
Can you code a macro so it runs multiple times in the same workboo | Excel Discussion (Misc queries) | |||
Code that runs each time AFTER a sheet is cut off the book | Excel Programming |