hiding processes

  • Thread starter Thread starter marta
  • Start date Start date
M

marta

Hello,
The macro i am working on has a number of processes that
involve copying information from one file to the other.
This causes the screen to 'flash' for a period of time. Is
there any way to make some of these processes invisible.
(I'm worried that this might confuse the people that will
be running it)
Thanks for your help.
marta
 
hi
use
application.screenupdating=false
'your code
application.screenupdating=True
 
Marta,

Set the ScreenUpdating property to False, run your code, and then
restore it to True. E.g.,

Application.ScreenUpdating = False
' your code here
Application.ScreenUpdating = True

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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