(inserting into quote from code example bellow from Socko)
Use Application.Visible property to hide the application entirely
Sub RunWithoutShow()
Application.Visible = False
Application.ScreenUpdating = False 'If you hide the app leave screen
updating set to false in it will improve performance
' 'Paste the vba code here
'Change screenupdating property to true
Application.ScreenUpdating = True
Application.Visible = True
End Sub
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.