How to hide the status bar in Microsoft Excel with the VBA Code?

Do you want to hide the status bar in Microsoft Excel ?. You can use the VBA code to do it quickly.

How to hide the status bar in Microsoft Excel with the VBA Code?

How to hide the status bar in Microsoft Excel with the VBA Code?

1. Open the excel workbook in Microsoft Excel 2016 and press the keyboard shortcut key “Alt + F11” to open the Microsoft Visual Basic for Applications window.

2. Click the “Insert –> Module” option from the menu and paste the following code.

Sub Hide()
    Application.DisplayStatusBar = False
End Sub

3. Press F5 to run the module. This would hide the StatusBar in the page. To display the StatusBar back, change the value False to True and press F5.

%d