Application.StatusBar property (Excel)
Returns or sets the text in the status bar. Read/write String.
expression.StatusBar
expression A variable that represents an Application object.
This property returns False if Microsoft Excel has control of the status bar. To restore the default status bar text, set the property to False; this works even if the status bar is hidden.
This example sets the status bar text to "Please be patient..." before it opens the workbook Large.xls, and then it restores the default text.
oldStatusBar = Application.DisplayStatusBar
Application.DisplayStatusBar = True
Application.StatusBar = "Please be patient..."
Workbooks.Open filename:="LARGE.XLS"
Application.StatusBar = False
Application.DisplayStatusBar = oldStatusBar
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.