Created
April 9, 2016 08:57
-
-
Save DominicBreuker/4199dc0367b227055001aa5f3e952bd6 to your computer and use it in GitHub Desktop.
Google Spreadsheet Form Backend
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 registerSheetWithScript() { | |
... | |
SpreadsheetApp.getUi().alert('This sheet will now receive data from forms!'); | |
} | |
function onOpen() { | |
SpreadsheetApp.getUi().createMenu('FormBackend') | |
.addItem('Register sheet', 'registerSheetWithScript') | |
.addToUi(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment