Created
September 26, 2018 04:31
-
-
Save akanik/e8dc794531b238c5626a02a728d69762 to your computer and use it in GitHub Desktop.
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
//These two functions create a new menu item titled "Update data" that | |
//when clicked will run the rest of the code we're writing here | |
function onOpen() { | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu('Update data') | |
.addItem('Update data', 'updateDataMenu') | |
.addToUi(); | |
} | |
function updateDataMenu() { | |
gaDateFetch(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment