lost menu bar

J

JoEllen OSBDC

HELP!!! The main menu bar is missing off my excel sheet
and I can't seem to find anyone to help me get it back.
The menu I am missing is the one that includes - File,
Edit, Insert and etc. I have tried...right clicking -
customize - toolbars, but I don't seem to have the needed
item. Anyone with suggestions - please reply...

Thanks.
 
F

Frank Kabel

Hi
if you right-click on the menu bar you should see an item like
'General'. Check this item
 
J

Jason Morin

Press ALT+F11, Insert > Module, paste this code in, and
run the macro:

Sub ShowMenuBar()
Application.CommandBars.ActiveMenuBar.Enabled = True
End Sub
 
Top