How can I do a progress bar

B

bren

Hi,

I have this macro that gets it´s time to load. I need to create a
progress bar or MsgBox that tells me that the macro is loading. How
can I do this?

Have a nice day
 
R

Robert Flanagan

Loading or running? If running, the simpliest way is to use

Application.Statusbar = "some message"

and change the message at different points in your macro. When all done use

Application.Statusbar = False

to clear the statusbar

Robert Flanagan
http://www.add-ins.com
Productivity add-ins and downloadable books on VB macros for Excel

Hi,

I have this macro that gets it´s time to load. I need to create a
progress bar or MsgBox that tells me that the macro is loading. How
can I do this?

Have a nice day
 

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.

Ask a Question

Top