MACRO EVENT

  • Thread starter Thread starter BEN
  • Start date Start date
---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
 
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
 
Back
Top