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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Turning Echo Off in Excel using VBA 1

Status
Not open for further replies.
Apr 10, 2000
155
US
I know this can be done I just cannot remember the command. All I want to do is turn off the screen display while custom functions are running and then turn it back on after they are complete. The functions move throughout the sheet gathering data and then return to display the result. I don't want the user to see the movement of the cellpointer. Thanks.
Rick
 
Application.ScreenUpdating = False
Application.ScreenUpdating = True

This should do what you are asking about as part of a VBA module.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top