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

Displaying just egg timer when running long multisheet macro

Status
Not open for further replies.

01491

ISP
Oct 30, 2001
17
0
0
GB
I have a VBA code that does various editing functions over multiple worksheets. I am looking for a piece of code that displays just the opening sheet with an eggtimer instead of having the strobe effect from swapping from page to page.

Any offers?

Thanks.
 
Sorry,

I'm not quite sure what you mean.

Is this VBA code or an option from the menu.

Thanks.
 
"I have a VBA code that does various editing functions over multiple worksheets."
Assuming from your statement above that you have a macro that does whatever, then try adding [tt]Application.ScreenUpdating = False[tt] before any actual processing

[tt]
Sub YourProcedure()
Application.ScreenUpdating = False
Application.Cursor = xlWait


' rest of your code goes here

Application.Cursor = xlDefault
Application.ScreenUpdating = False

End Sub
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top