Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. 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: Disappearing Status Bar.

Disappearing Status Bar

Written by Allen Wyatt (last updated August 8, 2020)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


5

Catherine uses keystrokes where she can (instead of the mouse) and she seems to periodically hit a key combination which makes the status bar disappear. She has yet to discover what the keystroke combination is or how to get the status bar back without shutting Excel down and restarting.

The only way that this can happen in Excel 2007 or later versions is through the use of a macro. This is because the capability to turn off the status bar, which was present in earlier versions of Excel, was removed starting with Excel 2007. (A user cannot turn it off, but a macro can.)

Thus, if your status bar is disappearing as you are using Excel, then it stands to reason that there is a macro on your system that is being triggered (perhaps by a shortcut key you are pressing) and the macro is turning off the status bar. You'll need to do some poking through your macros to see if this is, indeed, the case. Specifically, as you are poking about, you'll want to look for a line that looks similar to this:

Application.DisplayStatusBar = False

If the macro executes such a line without later setting the DisplayStatusBar property to True, then you won't see your status bar.

There is another macro-related possible cause for the problem, as well. If you don't use macros in your workbooks, yet you work with workbooks that come from others, it is possible that their workbooks are the root of the problem because they may contain macros. If you suspect this as a possible cause, try these steps:

  1. Press Alt+F11. Excel opens the Visual Basic Editor.
  2. Press Ctrl+G. The Immediate window opens in the Visual Basic Editor.
  3. Type the following into the Immediate window and press Enter:
  4. Application.DisplayStatusBar = True
    
  5. Press Alt+Q. The Visual Basic Editor closes, and you are returned to Excel.

If this doesn't work and there are no macros, then it is most possible that you are pressing, in sequence, a shortcut such as Alt+W, E. This puts Excel into full-screen mode, which means that the worksheet takes up the maximum possible space on the screen. In this mode the status bar is not displayed. You can get out of this viewing mode by simply pressing Esc at any time.

Another technique to try is to click on the File tab of the ribbon and then go back to your worksheet. Some ExcelTips readers advised that this method works when their status bar disappears.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9144) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Disappearing Status Bar.

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

Understanding the For ... Next Structure

Part of the power of VBA is being able to control when some of your code executes and when it doesn't. A primary way to ...

Discover More

Unable to Set Margins in a Document

If you find that you cannot set the margins in a document, chances are good that it is due to document corruption. Here's ...

Discover More

Adjusting Your View of 3-D Graphs

Do you use Excel's charting capabilities to display three-dimensional views of your data? The program provides a way that ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!

More ExcelTips (ribbon)

Jumping to the Last Possible Cell

It can be frustrating if you try to jump to the last cell in a worksheet, only to find out that you are taken to some ...

Discover More

Mouse Scroll Wheel Doesn't Work with Some Worksheets

When you use the mouse wheel, the normal behavior is to scroll vertically through your worksheet. If the mouse wheel ...

Discover More

Modifying Error Alerts Received

Excel helpfully lets you know when the data or formulas you've entered in a cell don't make sense. It does this by ...

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 4 + 0?

2022-02-08 15:56:34

J. Woolley

My Excel Toolbox includes the following four macros: ToggleStatusBar, ToggleFormulaBar, ToggleScrollBars, and ToggleFullScreen. Each will enable or disable the indicated feature. Here is a sample of the VBA:

Sub ToggleStatusBar()
    With Application
        .DisplayStatusBar = (Not .DisplayStatusBar)
    End With
End Sub

See https://sites.google.com/view/MyExcelToolbox/


2022-01-25 05:00:45

Philip

Note on the "Full Screen View" suggestion: Full Screen has been removed from Excel for versions 2013 and onwards. So in effect for those versions VBA is the ONLY way to hide or show the status bar ...


2021-12-16 21:28:37

MENG

work like a charm


2021-09-01 05:56:31

Shimmachalam K

This Process worked for me ... Thank You

Press Alt+F11. Excel opens the Visual Basic Editor.
Press Ctrl+G. The Immediate window opens in the Visual Basic Editor.
Type the following into the Immediate window and press Enter:
Application.DisplayStatusBar = True
Press Alt+Q. The Visual Basic Editor closes, and you are returned to Excel.


2021-05-06 16:59:15

WANG WEI CHENG

Thank you very much. It helped a lot!

Cheers from Brazil!


This Site

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.

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.