Status Bar - shortcut to display?

J

Jack S.

Is there a way to quickly display the Status Bar instead of the tedious Tools -
Options - View - Show - Status Bar - check or uncheck?
 
L

Larry

Install this macro, assign a keystroke, and it will toggle the Status
bar off and on.


Sub StatusBarToggle()
Application.DisplayStatusBar = Not (Application.DisplayStatusBar)
End Sub
 
Top