Kankuro
Kankuro

Reputation: 305

Remove custom menu from Google Sheets

I added a menu into my Google Sheets but can't find a way to delete it. The method used to add it was here.

Deleting the script didn't help, and neither did revoking access to my Google account.

What would I do to remove this menu from my menu bar so it no longer shows to the right of the "Help" menu?

Upvotes: 6

Views: 4902

Answers (1)

Jared Pinkham
Jared Pinkham

Reputation: 501

The method you linked adds a menu when the Spreadsheet is opened. Have you closed the sheet and reopened it since deleting the onOpen() script? (and saving the script)

Without the onOpen() function in the bound script the menu will not be added the next time the Spreadsheet is opened.

https://developers.google.com/apps-script/reference/spreadsheet/spreadsheet#addMenu(String,Object)

Upvotes: 7

Related Questions