This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onOpen() { | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu('Custom functions') | |
.addItem('Look up fragrance notes', 'getFragranceNotes') | |
.addToUi(); | |
} | |
function getFragranceNotes() { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var allSheets = ss.getSheets(); |