Message Box in VBA to say Please Wait

jts2004

Board Regular
Joined
Apr 21, 2004
Messages
156
I have a macro that takes about 30 sec. I would like a message to pop up saying "please wait" the disappear after the macro ends. Will this slow up my macro even more?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Good afternoon jts2004

You will need to design a userform (go to Insert > Userform from the VBE) which is simplicity itself and use this call to show it (assuming you name it UserForm1):

Userform1.Show

and to dismiss it:

Unload UserForm1

A MsgBox wouldn't be suitable in this instance as it needs user intervention to be closed.

HTH

DominicB
 
Upvote 0
Hi jts2004

And try this trick to speed up your macro. Make the first line after the Sub() statement:

Application.ScreenUpdating=False

and this directly before the End() statement:

Application.ScreenUpdating=True
HTH

DominicB
 
Upvote 0
NP. Now, let's see if jts understood your first post and was able to implement it. :wink:
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top