VBA equivalent to "echo off"

B

Brian

How can I stop an Excel macro from displaying the intermediate steps on the
screen except until after it has completed. I guess I'm looking for the VBA
equivalence to "echo off" for DOS. Your help will be much appreciated.

Brian
 
B

Biff

Sub Whatever()

Application.ScreenUpdating = False

Your code here

Application.ScreenUpdating = True

End Sub

Biff
 

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

Top