invisible macro commands?

J

Julieeeee

What is the command to make the steps in a macro invisible to the user? That
is, when I press the button I would like to just see the final result and not
the blinkety blinkety as each command is executed. Thx! Julie
 
D

Don Guillett

try
application.screenupdating=false
your code
application.screenupdating=true
 
Z

Zack Barresse

Hi there Julie,

Add a couple of lines to your code ...


Sub YourMacroHere
Application.ScreenUpdating = false

'... your code here ...

Application.Screenupdating = true
End Sub


HTH
 
Top