Status Bar - shortcut to display?

  • Thread starter Thread starter Jack S.
  • Start date Start date
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?
 
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
 
Back
Top