---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