Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Progression Indicator in a Macro.
Written by Allen Wyatt (last updated March 19, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
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 at its 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. You can find an example of this type of progress indicator at this address:
https://www.excel-easy.com/vba/examples/progress-indicator.html
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8969) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Progression Indicator in a Macro.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
Besides the regular way of displaying formulas, Excel can also display them using what is called R1C1 format. If you are ...
Discover MoreWhen you copy information from one worksheet to another using a macro, you might not get exactly what you want. This tip ...
Discover MoreIf you need to limit the cells that are accessible by the user of a worksheet, VBA can come to the rescue. This doesn't ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2022-03-19 11:14:55
J. Woolley
My Excel Toolbox includes ProgressBar_Text, which uses the status bar, and ProgressBar_Form, which includes a UserForm. I like to use the latter with Lightbox_Initiate to obscure the Excel window while a long macro is running, followed by Lightbox_Terminate.
See https://sites.google.com/view/MyExcelToolbox/
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments