Skip to content

Instantly share code, notes, and snippets.

@chipoglesby
Last active May 24, 2018 13:36
Show Gist options
  • Select an option

  • Save chipoglesby/796ae3959820f9b843bb to your computer and use it in GitHub Desktop.

Select an option

Save chipoglesby/796ae3959820f9b843bb to your computer and use it in GitHub Desktop.
Custom File Menu for Google Apps Script
function onOpen() {
var array = [];
ss = SpreadsheetApp.getActiveSpreadsheet();
for (var n in ss.getSheets()) {
var sheets = ss.getSheets()[n];
array.push(sheets.getName());
}
var ui = SpreadsheetApp.getUi();
ui.createMenu('Trip Menu')
.addItem('Trips', 'menuItem1')
.addItem(array, 'menuItem2')
.addToUi();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment