How can I make the status bar to be displayed as default?

A

Aragorn

Currently everytime I open excel, I need to go to the Tools menu, click
Options, and then click the View tab and then select the Status bar check box
 
R

Roger Govier

Hi

Copy the code below into your ThisWorkbook module of your file

Private Sub Workbook_Open()
Application.DisplayStatusBar = True
End Sub

To USe
Copy code above
Alt+F11 to enter the VB Editor
In the right hand Explorer pane, navigate the the ThisWorkbook module of
your Project and double click it
Paste the Code into the right hand pane that appears
Alt+F11 to return to Excel
Save the workbook

--
Regards
Roger Govier

Aragorn said:
Currently everytime I open excel, I need to go to the Tools menu, click
Options, and then click the View tab and then select the Status bar check
box

__________ Information from ESET Smart Security, version of virus
signature database 4538 (20091024) __________

The message was checked by ESET Smart Security.

http://www.eset.com

__________ Information from ESET Smart Security, version of virus signature database 4538 (20091024) __________

The message was checked by ESET Smart Security.

http://www.eset.com
 
G

Gord Dibben

Definitely not normal behaviour.

Does this happen with every workbook you open or just one?

If one, you could have some code running in that workbook that turns Status
Bar off.

If all workbooks.........Do you have a Personal.xls opening that may do the
deed?

Do you have permission to save to the Registry which is where that setting
is stored?


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top