How to hide status bar in Microsoft Excel 2007
How do I hide status bar in Excel 2007. I want to view full screen except for menu titles only. I try to read some settings information in the help file, but there is nothing working out. Can anyone help with to find the right way and if you can post screenshot of help then it must be very much helpful.
Re: How to hide status bar in Microsoft Excel 2007
As far as I know only with VBA. After the beta it is removed but still you can try out this. Use Application.DisplayStatusBar = False and then check back. You can re-enable that by changing the value from False to True.
Re: How to hide status bar in Microsoft Excel 2007
I think the settings are in the View > Show/Hide but it is not. If you do not found this then the only way I have found is with VBA:Application.DisplayStatusBar = False. In the Excel Options on the Popula tab, check the Display Developer on Ribbon. Now you can open Developer and clcik Visal Basic. Copy the cose above into the Immediate window; tap Enter key Done. Of course, Application.DisplayStatusBar = True will restore it.