screen updating

  • Thread starter Thread starter Josie
  • Start date Start date
J

Josie

Sorry to ask all you smart people such a dumbass question
but at least it'll be easy to answer.

What's the command that stops all the actions your macro
is performing from happening 'live' on the screen? Instead
all you see is the start point and endpoint, and it really
speeds things up.

I'm in a bit of a VB desert here, so I'd be grateful for
help.
 
To turn screen updating off -

Application.ScreenUpdating = False

and to turn it back on -

Application.ScreenUpdating = True.

Enjoy
 
Application.ScreenUpdating = False

.... do your stuf

Application.ScreenUpdating = True
 

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