G Guest Jun 4, 2007 #1 Is there a way I can "hide" the actions when a macro is being run instead of watching excel bounce around until it has run it's course?
Is there a way I can "hide" the actions when a macro is being run instead of watching excel bounce around until it has run it's course?
G Guest Jun 4, 2007 #2 Possibly:- sub yoursub() applications.screenupdating = false do your stuff application.screenupdating = True end Sub Mike
Possibly:- sub yoursub() applications.screenupdating = false do your stuff application.screenupdating = True end Sub Mike
K Keith74 Jun 4, 2007 #3 application.screenupdating = false at the start of the macro, and application.screenupdating = true at the end of the macro
application.screenupdating = false at the start of the macro, and application.screenupdating = true at the end of the macro