Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. CB wrote: 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 -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dave,
Thanks. This is exactly what I needed. Cheers, CB "Dave Peterson" wrote: 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. CB wrote: 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 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I get 0 (zero) to register as a value as opposed to blank c | Excel Discussion (Misc queries) | |||
Formatting as TEXT as opposed to scientific notation | Excel Discussion (Misc queries) | |||
#VALUE in formula as opposed to result | Excel Worksheet Functions | |||
COUNTIF-how do I count the quantity of 'H', as opposed to 'h'? | Excel Worksheet Functions | |||
Block Copy as opposed to EditCopy | Excel Programming |