Skip to content

Instantly share code, notes, and snippets.

@ChaiyachetU
Last active October 13, 2019 06:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChaiyachetU/526c26a543a2eec5cf8049796871a088 to your computer and use it in GitHub Desktop.
Save ChaiyachetU/526c26a543a2eec5cf8049796871a088 to your computer and use it in GitHub Desktop.
//create menu for sync to calendar
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Sync to Calendar')
.addItem('Add events to calendar', 'addEvents')
.addItem('Get events from calendar', 'getEvents')
.addToUi();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment