refresh of screen -- commando

  • Thread starter Thread starter matthias
  • Start date Start date
M

matthias

Hi all,

can anyone give me the commando for

stop & start REFRESHING OF THE SCREEN, so the macro can
run invisible.

txs a lot,

mat
 
Mat,

Use something like

Application.ScreenUpdating = False
' your code here
Application.ScreenUpdating = True
 
Application.ScreenUpdating = False 'at start of code
Application.ScreenUpdating = True 'at end of code

Amit
 

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