Excel 2010 Status Bar disappeared

Kappy

Board Regular
Joined
Jun 26, 2009
Messages
58
From time to time, the status bar in excel 2010 is not showing (I don't mean the information is not showing, I mean the bar is not there at all). In previous versions I would go to view>status bar...

how do I get the status bar back in excel 2010?

Thanks!
 
Thanks, but it didn't work.

What part of the process failed? Were you able to open the VBE? Were you able to open the Immediate Window? Sometimes it's docked in a position where it's hard to see. Or was it just that you needed to change the TRUE to FALSE?

Looks like you're new here, so please don't take this as chastisement - just advice so folks here can better help you going forward. ;) "That didn't work" or "that doesn't work" is a response that while seen thousands upon thousands of times around here has yet to be helpful once. It's much better if you can be specific about what parts of the process you were able to execute and what were the results and where you think the process may have gone off track.
 
Upvote 0

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Thanks, it works for both off and on. I had spacing I shouldn't have had in the Immediate Window.

I am new here.
 
Upvote 0
I hit alt F11; then ctrl G to get the Immediate Window. I pasted your code into the Immediate Window, and pressed enter. Thecursor just dropped down to the next line every time I hit enter.

What am i doing wrong?
 
Upvote 0
Click somewhere in the code line, then press enter. The statusbar should return
 
Upvote 0
Hi
I am experiencing exactly the same issue.

in the immediate box i paste in the code provided and press return. It takes me to the next liune and when I exit and go back to excel spreadsheet I still have no status bar.

Can you explain what I am doing wrong?

Thanks
 
Upvote 0
Make sure the cursor is somewhere within that line of code and then press enter
 
Upvote 0
application.DisplayStatusBar = True

I have entered the above code in twice. I am always on the line or within the code when i press enter.

I have tried removing the spaces either side of the equals sign, just to see if this helped and I still do not appear to be doing this correctly?
:eek:
any suggestions
 
Upvote 0
No that should work. Perhaps try running it as a macro just to be sure. Paste this into a new module in your workbook:
Code:
Sub ResetStatusBar()
application.DisplayStatusBar = True
End Sub
then run it from the macros dialog (alt+f8) and see if that helps.
 
Upvote 0
Hi

Entered new code but nothing happens when i press ALT and F8 at the same time?

Also now when I press entre it tells me I havea complie error, invalid in immediate pane?

?
 
Upvote 0
That code needs to go in a module, not in the Immediate Window.
 
Upvote 0

Forum statistics

Threads
1,218,208
Messages
6,141,126
Members
450,337
Latest member
bschermerhorn

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top