Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 663
Kankuro Avatar asked Apr 17 '18 00:04

Kankuro


People also ask

How do I hide the menu bar in Google Sheets?

Note that you can also use the Ctrl + Shift + F keyboard shortcut to hide and unhide this menu as well. Additionally the menu is only hidden on an individual file basis. So other spreadsheet files in your Google Drive will not be affected if you change the display setting for the menu.

How do I get rid of an app script in Google Sheets?

Go to script.google.com . At the right of the project you want to delete, click More more_vert > Remove > Remove.


1 Answers

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)

like image 86
Jared Pinkham Avatar answered Sep 22 '22 13:09

Jared Pinkham