You can use the ScreenUpdating property to hide your macro actions...From VB Help:
ScreenUpdating Property
True if screen updating is turned on. Read/write Boolean.
Remarks
Turn screen updating off to speed up your macro code.
You won't be able to see what the macro is doing, but it will run faster.
Remember to set the ScreenUpdating property back to True when your macro ends.
Use it in your code like this:
Application.ScreenUpdating = False
'...your code goes here...
Application.ScreenUpdating = True
Hope this helps,
theDude
Bookmarks