Here's a quick Macro i made that any one can use. Create a new macro then paste the following code into it, save it, and then customize your ribbon and add it to your quick access toolbar.
You can now Toggle (show / hide / on / off) the status bar with a simple click of your mouse button!
Code:
Sub ShowHideStatusBar()
'
' Show/hide status bar macro
'
' Christian Gould,
' node.four@gmail.com
If CommandBars("Status Bar").Visible = False Then
CommandBars("Status Bar").Visible = True
ElseIf CommandBars("Status Bar").Visible = True Then
CommandBars("Status Bar").Visible = False
End If
End Sub Regards, Christian Gould.