Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Progression Indicator in a Macro.

Progression Indicator in a Macro

Written by Allen Wyatt (last updated July 30, 2022)
This tip applies to Excel 97, 2000, 2002, and 2003


Macros are often created to process data, and processing data can often take a long time. Because of this, some users may think that their computer has stopped responding, even though the macro is busy chunking away a it's appointed task.

The solution for most macro developers is to somehow alert users as to the progress of the macro. There are two ways that you can do this in Excel. The simplest and most common approach is to use the status bar to indicate what the macro is doing. All you need to do is put together a string that contains the status message, and then assign that string to the StatusBar property of the Application object, as shown here:

sStatus = "Processing Input File - Please Be Patient"
Application.StatusBar = sStatus

The message stays on the status bar until you overwrite it with some other message. You could also indicate progress in a loop by giving the percentage complete:

For x = 1 to y
    Application.StatusBar = Format(x/y,"0.0%") & " Complete"
' Other coding here
Next

When your routine finishes, return the status bar back to normal with the following statement:

    Application.StatusBar = False

If you prefer to develop an actual progress indicator for the macro, you can do so by creating a UserForm and then updating the form to display a "percentage bar" or some other visual indicator. Most people who desire this type of progress indicator rely on a variation of John Walkenbach's solution, found at this address:

http://spreadsheetpage.com/index.php/tip/displaying_a_progress_indicator/

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3223) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Progression Indicator in a Macro.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

The EDATE Function

Want to figure a date a certain number of months in the future or past? The EDATE function may be just what you need for ...

Discover More

Using Text Boxes

Text boxes are handy for placing information in a container that can "float" over your worksheet. This tip explains what ...

Discover More

Sorting Single-Column Addresses

Got a document that contains a bunch of addresses? If you want to sort the addresses, then you are in for a surprise ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!

More ExcelTips (menu)

Understanding Subroutines

When developing macros, you can create subroutines. This is a great way to reuse common code and make your programming ...

Discover More

Deleting Worksheet Code in a Macro

When creating an application in VBA for others to use, you might want a way for your VBA code to modify or delete other ...

Discover More

Checking if a Workbook is Already Open

Knowing of a workbook is already open can be a prerequisite to your macro working correctly. Here's how to check it out.

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 7 + 0?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.