MACRO EVENT

J

Jacob Skaria

---If you mean hide the code from user (while debug) you can password protect
VBA from menu in VBE ...Tools>Project Properties>Protection tab.

---If you mean to hide what is happening while your code executes.
Application.Screenupdating = False
'your code
Application.Screenupdating = True

If this post helps click Yes
 
D

Don Guillett

SHOUT real loud does it every time. Please do NOT type in all caps. Hard to
read and RUDE!!!
Try using

application.screenupdating=false
code
application.screenupdating=true
 
Top