Skip to content

Instantly share code, notes, and snippets.

@DominicBreuker
Created April 9, 2016 08:57
Show Gist options
  • Save DominicBreuker/4199dc0367b227055001aa5f3e952bd6 to your computer and use it in GitHub Desktop.
Save DominicBreuker/4199dc0367b227055001aa5f3e952bd6 to your computer and use it in GitHub Desktop.
Google Spreadsheet Form Backend
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