2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

スプレッドシートのツールバー拡張でサブメニューを作るテンプレ

Posted at

| 概要

スプレッドシートにスクリプトを追加(?)する方法は割愛してます。
毎回調べたりするのが面倒なので、コピペ用コードを記載。
解説などはありません。

| コピペ用コード

// onOpen()は、ツールバーにメニューを追加するご作法
function onOpen() {
  const customMenu = SpreadsheetApp.getUi()
  customMenu.createMenu('メインメニュー')// ツールバーに表示されるトップの階層名
      .addItem('名前1', 'function1') //1個目のメニューアイテムを追加
      .addItem('名前2', 'function2')  //2個目のメニューアイテムを追加
      .addItem('名前3', 'function3')  //3個目のメニューアイテムを追加
      
        .addSeparator()  //線引くやつ
        .addSubMenu(//サブメニューを追加
          customMenu.createMenu('サブメニュー') 
          .addItem('サブ名前1', 'function4')//1個目のサブメニューアイテムを追加
          .addItem('サブ名前2', 'function5')//2個目のサブメニューアイテムを追加 
          
         )
      .addToUi()
}

| こんな感じになる

spreadsheet_add_menu.gif

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?