How to Hide and Unhide Status Bar in Excel (2 Easy Methods)

In this Excel tutorial, we will demonstrate how to hide and unhide the status bar.

Reasons for hiding or unhiding the status bar in Excel mostly depend on the user’s preferences and specific needs. Mostly, users prefer to hide it to maximize workspace and reduce distractions. Unhiding it reveals summary and status information that can be of benefit to users.

This is how the interface looks without the status bar:

status bar hidden

This is how it looks with the status bar.

status bar showing


What Is the Status Bar in Excel?

The status bar is the horizontal bar at the bottom of the application window. It displays details ranging from the status of the application to specifics about selected cells, such as counts, sums, and averages.

status bar

The bar mostly consists of the cell mode indicator, worksheet view indicator, and zoom slider. It can contain other information such as accessibility status, macro recording status, fill handle options, etc. depending on the version and user settings. It can be modified by using VBA and some built-in features.


2 Ways to Hide and Unhide the Status Bar in Excel

Method 1 – Using VBA Code

We can use the Application.StatusBar property of VBA to display and hide information in the status bar. Setting this property to False or True will hide or unhide the status bar entirely.

The Developer tab is required to apply VBA codes in Excel. If you don’t see it in your ribbon, then follow the link to display the Developer tab on the ribbon in Excel.

Steps:

  • Go to the Developer tab > Visual Basic.
    Applying VBA Code to Hide and Unhide Status Bar
  • In the VBA window that opens, select Insert and then click on Module.
  • Copy the following code and paste it into the module:
    :Sub Show_sbar()
    Application.DisplayStatusBar = True
    End Sub
    Sub Hide_sbar()
    Application.DisplayStatusBar = False
    End Sub
  • Save the file using the macro-enabled or xlsm extension.
  • Go back to the Excel interface and click on Macros in the Developer tab.
    Applying VBA Code to Hide and Unhide Status BarAs a result, a panel will appear named Macro containing 2 sub-functions.

Hide_sbar is the macro for hiding the status bar, and Show_sbar is for displaying the bar.

  • Choose the desired macro and click on Run.

Applying VBA Code to Hide and Unhide Status Bar

The status bar will vanish/appear depending on the macro selected. Here, as we selected the Hide_sbar macro, the status bar is hidden in the figure below.


Method 2 – Toggling Full-Screen Mode

The “Full Screen” of Excel offers a distraction-free and immersive working environment. It hides other Windows elements and some of the Excel elements, including the status bar.

The shortcut key to enter/exit full screen mode is CTRL + Shift + F1. Pressing this key combination will make both the ribbon and status bar disappear when entering full screen mode.

The Excel window will look like this:

Using Keyboard Shortcuts

To reveal the Ribbon in this mode, click the option on the top right corner of the Excel window.

Press CTRL + Shift + F1 again to restore the normal interface.

Note
There is a “Focus Mode” in Excel with a similar interface and interaction to the full-screen mode. This mode also hides the status bar. Press Alt + V then U on your keyboard to enter the focus mode. Exit it by pressing Esc. This interaction will also hide/show the status bar.

Download Practice Workbook


Frequently Asked Questions

What does ‘Ready’ on the status bar mean in Excel?

‘Ready’ is the cell mode status displayed in the status bar. It indicates the general mode of a cell. When you press Enter, the status changes to “Edit” indicating the cell is now in edit mode.

Can I customize the status bar to show specific information for my workbook?

Yes. To access the default options, right-click on the status bar and select the options you want to display/hide. For more detailed customization, VBA is required.

How do I switch between Page Layout view and Normal view using the status bar?

There are buttons available for Normal view, Page Layout view, and Page Break view in the status bar next to the zooming options. Click on them to switch between these views.


Related Articles


<< Go Back to Excel Parts | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Nasir Muhammad Munim
Nasir Muhammad Munim

Nasir Muhammad Munim has been an Excel and VBA Content Developer for over a year in Exceldemy and published more than 30 articles for the website. He is passionate about exploring new aspects of Excel and VBA. He received his Bachelor of Science in Electrical and Electronic Engineering from the Islamic University of Technology. Apart from creating Excel tutorials, he is interested in developing PostgreSQL, MySQL, and Android applications. He is fascinated by CAD-based designing systems and building... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo