View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
PCLIVE PCLIVE is offline
external usenet poster
 
Posts: 65
Default VBA equivalence tp to DOS "echo off"

Maybe something like:

Application.ScreenUpdating = False
<Yourcode
Application.ScreenUpdating = True

"Brian" wrote in message
...
How can I stop an Excel macro from displaying the intermediate images on
the
screen until after it has finished. I guess I'm looking for the VBA
equivalence to "echo off" as in DOS. Your help will be much appreciated.

Brian