M milo Oct 3, 2003 #1 Is there a way or a code to hide all the actions while a macro is running? Thanks, milo
P Peo Sjoblom Oct 3, 2003 #3 Don't forget to change that to true at the end of the macro Sub MyMacro() application.ScreenUpdating=False 'do your thing application.ScreenUpdating=True End Sub Regards, Peo Sjoblom
Don't forget to change that to true at the end of the macro Sub MyMacro() application.ScreenUpdating=False 'do your thing application.ScreenUpdating=True End Sub Regards, Peo Sjoblom
T Tim Oct 4, 2003 #4 Use this line of code at the start of the macro and it stops all the actionfrom appearing on the screen. ScreenUpdating = False
Use this line of code at the start of the macro and it stops all the actionfrom appearing on the screen. ScreenUpdating = False