How do I run a Macro, but not watch it run?

  • Thread starter Thread starter BK
  • Start date Start date
B

BK

Does anyone have any idea if there is a way to run a macro, but to not
be able to see what it's doing. In other words, when the macro is
run, the screen will not go through the entire process, but will
simply reflect the changes when the prcedure is finished. Is there a
way to do that?

Thanks for any help you can offer.
 
Application.ScreenUpdating = False
'Run macro
Application.ScreenUpdating = True
 
Precede the code with

Application.Screenupdating = False

and reset to True at the end.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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