Hide Macro Actions

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

Guest

Is there a way I can "hide" the actions when a macro is being run instead of
watching excel bounce around until it has run it's course?
 
Possibly:-

sub yoursub()
applications.screenupdating = false

do your stuff

application.screenupdating = True
end Sub


Mike
 
application.screenupdating = false

at the start of the macro, and

application.screenupdating = true

at the end of the macro
 

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