Hide code execution

  • Thread starter Thread starter YS
  • Start date Start date
Y

YS

I am trying to find out a way to hide the procedures a
macro goes through. In other words, I want the macro to
run without the user seeing the screen flicker and jump
from cell to cell.

Thanks.
 
Hi Ys,
I want the macro to
run without the user seeing the screen flicker and jump
from cell to cell.

Add

Application.ScreenUpdating=False

at the beginning and add

Application.ScreenUpdating=True

at the end of your macro.

Regards,

Jan Karel Pieterse
Excel MVP
www.jkp-ads.com
 
Try typing the following at the start of the macro
application.screenupdating = false
 

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