Displays or hides the status
bar. This is the 'strip' at the bottom of the
Excel window. (Usually displaying 'ready').
The
menu has a tick next to it when the status bar
is visible.
Sub ShowStatusBar()
'Toggles the setting to the opposite of current
With Application
If .DisplayStatusBar = True Then
.DisplayStatusBar = False
Else
.DisplayStatusBar = True
End IfIf
End With
End Sub