How to remove 'System' menu in toolbar Excel for Mac 2011

MervynG

New Member
Joined
Jan 15, 2018
Messages
10
Hi,

Opened a spreadsheet relating to room accommodation for my son on a school trip and a new drop down menu appeared in the toolbar entitles 'system'. I assume it relates to Visual Basic and some macro. However, the spreadsheet does not appear to have any macros and as I have no access to the original source and server I am unable to remove this.

Any advice on how to get rid of this unwanted toolbar very welcome.

Thanks

Mervyn
 
Hi Jon

Finally got there but ...

when I paste your text in the Immediate Window an error pop up appears:

Run-time error '5':

Invalid procedure call or argument
 
Upvote 0

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Sorry, I haven't used CommandBars in years, and Excel 2011 in many months. This is what you need to type into the immediate window:

Code:
For i = 1 to 2 : CommandBars(i).Controls("System").Delete : Next
 
Upvote 0
That error means it's not finding the item to delete.

Type this into the immediate window and press Enter, then copy the next line exactly (which VBA produces in response) and include it in a reply:

Code:
? "|" & CommandBars(1).Controls(1).Caption & "|"
 
Upvote 0
That's bizarre. It says the first menu is Excel ("X"), even though the System menu is visible there.

And I suppose this doesn't help:

View menu > Toolbars > Customize Toolbars and Menus
Select Worksheet Menu Bar > Reset
Select Chart Menu Bar > Reset

I'm afraid I don't know how to clean up your menu bars.
 
Upvote 0
Hi Jon,

You do, you just didn't realise it! I'm not sure which one as I did both in quick succession, but its finally gone. Thnak you.
 
Upvote 0

Forum statistics

Threads
1,214,808
Messages
6,121,686
Members
449,048
Latest member
81jamesacct

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