Block display during Macro

J

Juan García

Hello,
I execute a macro that go across the sheet and insert and copy a lot of rows
and formats I would like the user doesn´t see the process, only the results.
Is possible 'lock' visual effects during the macro execution.
Thanks.-
 
B

Bob Phillips

Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
 
J

Juan García

Thanks...
Bob Phillips said:
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True

--
__________________________________
HTH

Bob
 

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