Show/Hide Application Status bar using Excel VBA
Here is the simple way to hide/show the status bar in Excel
Sub Hide_Status_Bar()
Application.DisplayStatusBar = False
End Sub
Sub Show_Status_Bar()
Application.DisplayStatusBar = True
End Sub
Also you need to clear the contents of the status bar.
Sub Clear_Status_Bar()
Application.StatusBar = False
(or)
Application.StatusBar = ""
End Sub
Friday, April 11, 2008
Download Windows Live Toolbar and personalize your Web experience! Add custom buttons to get the information you care about most.
excellent tools. thanks
ReplyDeleteThis is the only place on the internet I was able to get the answer I needed. Thank you. You saved me a ton of time. I can't believe MS made this so complicated in this version.
ReplyDeletecustomized status bar is not hide (excel billow showed status bar)
ReplyDelete