View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Hide Macro Actions

Possibly:-

sub yoursub()
applications.screenupdating = false

do your stuff

application.screenupdating = True
end Sub


Mike
"FrankTimJr" wrote:

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?