Lost menu items on toolbar

Ms Excel

New Member
Joined
Dec 10, 2002
Messages
45
:eek:
Hi,

I lost some items on my toolbar. The Insert is showing but when I click it, it has only a few items there, without the rows, columns, etc. thus I cannot insert a row.
The Data option is also gone. I don't know what happened. Can you help please?

Thanks.
 
Hi,

I now know why I lost certain menu items on the toolbar because I put in the macro below in a workbook. Once I open this workbook, certain menu items are there but if I open another Excel workbook, the menu items under Insert, for example are not all showing. When the Excel application is closed and then opened, the menu items for Insert are all there. Do you know why this macro will result in the menu items for Insert to disappear?

Private Sub Workbook_Open()
With Application
.DisplayFormulaBar = False
.DisplayStatusBar = False
.CommandBars("Standard").Visible = False
.CommandBars("Formatting").Visible = False
.CommandBars("Chart Menu Bar").Visible = False
.CommandBars("Control Toolbox").Visible = False
End With
End Sub


Private Sub Workbook_Deactivate()
With Application
.DisplayFormulaBar = True
.DisplayStatusBar = True
.CommandBars("Standard").Visible = True
.CommandBars("Formatting").Visible = True
.CommandBars("Chart Menu Bar").Visible = True
.CommandBars("Control Toolbox").Visible = False
End With
End Sub
 
Upvote 0

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,221,706
Messages
6,161,406
Members
451,702
Latest member
Kc3475

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