Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide Excel VBA process while running 2

Status
Not open for further replies.

cariengon

Technical User
Mar 18, 2002
283
US
I'm sure someone has asked this, but I'm not sure about the wording...

Is there code to make it so the VBA code that is being run is done in the background? I have a "Setup" page that the user uses to click buttons to import/sort data in other sheets. I don't want the user to see all of the activity...

Thanks!
Carie
 
At the start use: Application.ScreenUpdating = False

At the end use: Application.ScreenUpdating = True

Hope this helps. :)

Regards, ...Dale Watson dwatson@bsi.gov.mb.ca

 
Thank you Dale!!!

I've used it before but couldn't remember the syntax!

Much Appreciated -
Carie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top