How to hide all the actions while a macro is running

M

milo

Is there a way or a code to hide all the actions while a
macro is running?

Thanks,
milo
 
P

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

Use this line of code at the start of the macro and it
stops all the actionfrom appearing on the screen.

ScreenUpdating = False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top