Custom menus in Google Sheets

You can create custom menus in Google Sheets to make it easy for end users to access the functionality that you've developed using Google Apps Script.

These custom menus will be displayed in the menu bar right next to the Help menu. The screenshot below shows a custom menu called ⚙️ Admin Settings.

Screenshot of a Google Sheets spreadsheet showing a custom menu.

Each menu item in the custom menu is associated with a Google Apps Script function. When a menu item is selected, its corresponding function will be run. For example, if the menu item Setting A is selected, the corresponding function settingA() will be run and this function will display a toast notification. You'll learn how to create this custom menu later on in this tutorial.

Screenshot of a Google Sheets spreadsheet showing a custom menu with two menu items.

Selecting the menu item Setting A will result in the below notification being displayed.

Screenshot of a Google Sheets spreadsheet with a toast notification displayed in the lower right hand corner.

When should you create a custom menu in a Google Sheets spreadsheet?

There are several use cases for creating a custom menu. Here are some of them:

  • You can make it easy for users to run Google Apps Script functions that are associated with your spreadsheet. Instead of opening the script editor and running a function, the user can run it from the spreadsheet itself by selecting the menu item that is associated with the function.

  • Even non-technical users that may not be comfortable navigating the script editor will be able to easily navigate a menu.

  • You can link to functions that require the user's authorization from a menu item and users will be asked to approve the necessary permissions when they select that menu item.

  • Note: Custom Functions cannot use functionality that requires user authorization but this restriction does not apply to functions associated with menu items in a Custom Menu.

How to create a custom menu in Google Sheets using Google Apps Script?

Creating a custom menu is very easy to do and only requires a few lines of code.

First, create a new Google Sheets spreadsheet or open an existing one where you want to create the custom menu.

Then, open the script editor by selecting Tools —> Script editor. In the rest of this tutorial, you'll learn how to write some simple code in this script editor to create a custom menu.

Creating a custom menu with a single menu item

The code below uses a variable called menu to create the custom menu, add items to it and then adds itself to the spreadsheet's user interface. Replace the code in the script editor with the code below.

function createEmptyMenu() {
   var menu = SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings");
   menu.addItem("Setting A", "settingA");
   menu.addToUi();
}

function settingA() {
  SpreadsheetApp.getActive().toast("You selected Setting A.");
}

Running the above code will result in the "⚙️ Admin Settings" menu being displayed in your spreadsheet. Selecting the menu will display the Setting A menu item.

Screenshot of a Google Sheets spreadsheet showing a custom menu with a single menu item.

When you select the Setting A menu item, the function settingA() will be run and a toast notification will be displayed. You might be prompted to authorize your script if you haven't done so already.

Screenshot of a Google Sheets spreadsheet with a toast notification displayed in the lower right hand corner.

The code to create the custom menu can be simplified by using a technique called chaining.

var menu = SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings");
menu.addItem("Setting A", "settingA");
menu.addToUi();

Instead, you can just chain these operations together directly. Notice that there are no semicolons at the end of the first two statements. The .

SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings")
  .addItem("Setting A", "settingA")
  .addToUi();

So the full code now becomes a bit easier to read.

function createEmptyMenu() {
   SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings")
     .addItem("Setting A", "settingA")
     .addToUi();
}

function settingA() {
  SpreadsheetApp.getActive().toast("You selected Setting A.");
}

Creating a custom menu with two menu items

The code below will create a custom menu with two menu items. Notice that there are two .addItem() statements chained together.

When the menu item Setting A is selected, the function settingA() will be run and when Setting B is selected, settingB() will be run.

function createMenu() {
   SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings")
    .addItem("Setting A", "settingA")
    .addItem("Setting B", "settingB")
    .addToUi();
}

function settingA() {
  SpreadsheetApp.getActive().toast("You selected Setting A.");
}

function settingB() {
  SpreadsheetApp.getActive().toast("You selected Setting B.");
}

Replace the code in the script editor with the above code and run the createMenu() function. You should see two menu items in the custom menu.

Screenshot of a Google Sheets spreadsheet showing a custom menu with two menu items.

Organizing the menu items in your custom menu

When your custom menu has multiple items, it can be useful to organize them to make it easier for users to find the right one. There are two ways to organize menu items:

  • Use a line separator to separate menu items that belong to different categories.

  • Create sub menus when you have lots of menu items.

Use a line separator to separate menu items that belong to different categories

The code below will add a line separator between menu items Setting B and Setting C. If settings A and B belong to a different category compared to setting C, the line separator will make it easier for your users to navigate the menu.

function createMenuWithSeparator() {
   SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings")
    .addItem("Setting A", "settingA")
    .addItem("Setting B", "settingB")
    .addSeparator()
    .addItem("Setting C", "settingC")
    .addToUi();
}

function settingA() {
  SpreadsheetApp.getActive().toast("You selected Setting A.");
}

function settingB() {
  SpreadsheetApp.getActive().toast("You selected Setting B.");
}

function settingC() {
  SpreadsheetApp.getActive().toast("You selected Setting C.");
}

The custom menu below has a line separator between Setting B and Setting C.

Screenshot of a Google Sheets spreadsheet showing a custom menu with three menu items. A line separator separates the third menu item from the first two.

Create sub menus when you have lots of menu items

When you have lots of menu items, use sub menus to organize them in the menu. In the screenshot below, you'll notice that Setting D and Setting E have been organized under a sub menu called Advanced.

Screenshot of a Google Sheets spreadsheet showing a custom menu with a sub menu called "Advanced".

The code below creates the menu shown in the above screenshot. The addSubMenu() method is used to add a sub menu to the menu.

function createMenuWithSubMenu() {
  var subMenu = SpreadsheetApp.getUi().createMenu("Advanced")
    .addItem("Setting D", "settingD")
    .addItem("Setting E", "settingE");
  
  SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings")
    .addItem("Setting A", "settingA")
    .addItem("Setting B", "settingB")
    .addSeparator()
    .addItem("Setting C", "settingC")
    .addSeparator()
    .addSubMenu(subMenu)
    .addToUi();
}

function settingA() {
  SpreadsheetApp.getActive().toast("You selected Setting A.");
}

function settingB() {
  SpreadsheetApp.getActive().toast("You selected Setting B.");
}

function settingC() {
  SpreadsheetApp.getActive().toast("You selected Setting C.");
}

function settingD() {
  SpreadsheetApp.getActive().toast("You selected Setting D.");
}

function settingE() {
  SpreadsheetApp.getActive().toast("You selected Setting E.");
}

Create the custom menu automatically when the spreadsheet is opened

In the above examples, we had to run a function to create the custom menu. However, what we really want is for the custom menu to be displayed automatically without having to run any function. We can implement this using an onOpen() simple trigger.

In the code below, the function onOpen() will be run automatically whenever your spreadsheet is opened. This function then creates the menu by running createMenuWithSubMenu().

function onOpen() {
  createMenuWithSubMenu();
}

function createMenuWithSubMenu() {
  var subMenu = SpreadsheetApp.getUi().createMenu("Advanced")
    .addItem("Setting D", "settingD")
    .addItem("Setting E", "settingE");
  
  SpreadsheetApp.getUi().createMenu("⚙️ Admin Settings")
    .addItem("Setting A", "settingA")
    .addItem("Setting B", "settingB")
    .addSeparator()
    .addItem("Setting C", "settingC")
    .addSeparator()
    .addSubMenu(subMenu)
    .addToUi();
}

function settingA() {
  SpreadsheetApp.getActive().toast("You selected Setting A.");
}

function settingB() {
  SpreadsheetApp.getActive().toast("You selected Setting B.");
}

function settingC() {
  SpreadsheetApp.getActive().toast("You selected Setting C.");
}

function settingD() {
  SpreadsheetApp.getActive().toast("You selected Setting D.");
}

function settingE() {
  SpreadsheetApp.getActive().toast("You selected Setting E.");
}

Conclusion

In this tutorial, you learned how to create custom menus in Google Sheets using Google Apps Script.

Thanks for reading.

Stay up to date

Follow me via email to receive actionable tips and other exclusive content. I'll also send you notifications when I publish new content.
By signing up you agree to the Privacy Policy & Terms.

Have feedback for me?

I'd appreciate any feedback you can give me regarding this post.

Was it useful? Are there any errors or was something confusing? Would you like me to write a post about a related topic? Any other feedback is also welcome. Thank you so much!