Displaying data on Excel Statusbar?

G

Guest

Hello,

Does Excel have any function like the SysCmd function in MS Access for
displaying data in the Excel Statusbar? Is it possible to display data in
the Excel statusbar or make like a progres meter?

How to do this?

Thanks,
Rich
 
D

dq

Hello,

Does Excel have any function like the SysCmd function in MS Access for
displaying data in the Excel Statusbar? Is it possible to display data in
the Excel statusbar or make like a progres meter?

How to do this?

Thanks,
Rich

Use (in VB) Application.Statusbar = "My message" to display a message
and Application.Statusbar = False to remove it.
To make a progressbar you can work with something like "Processing
XXoooooo" to "Processing XXXXXXXX"

DQ
 
G

Guest

Use the following:

Application.Statusbar = FALSE 'to turn off'
Application.Statusbar = "Enter your comment" 'to display at the Lower Left
corner of the Excel window.
 

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