I am trying to turn off the main menu command bar in Excel. Why does this code not work?
Application.CommandBars("Worksheet Menu Bar").Visible = False
Many Thanks
Printable View
I am trying to turn off the main menu command bar in Excel. Why does this code not work?
Application.CommandBars("Worksheet Menu Bar").Visible = False
Many Thanks
I think this is what you are looking for:
Application.CommandBars("Worksheet Menu Bar").Enabled = False