Text Box as opposed to HourGlass

C

CB

I have a macro that imports data from another application. I would like to
display the message "Please Wait While Excel Imports Data" instead of just
displaying the hourglass. Is this possible and if so how?
Thanks in advance.
CB
 
D

Dave Peterson

You could use:

application.statusbar = "Please wait..."
'do the work
'reset the statusbar
application.statusbar = false

You could do everything behind a userform and show what you want when you want.

You could show a hidden worksheet, do the work and hide the sheet.
 

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