invisible macro commands?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
try
application.screenupdating=false
your code
application.screenupdating=true
 
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
 

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

Back
Top