Skip to content

Instantly share code, notes, and snippets.

View franklinokech's full-sized avatar
🎯
Focusing

franklinokech franklinokech

🎯
Focusing
View GitHub Profile
@franklinokech
franklinokech / Code.gs
Last active March 26, 2019 06:03
a working google app script to archive multiple rows based on the selected column values in a single command
function onOpen() { //Add a custom menu to the menu bar
var ui = SpreadsheetApp.getUi();
ui.createMenu('Admin')
.addItem('Archive', 'archive')
.addToUi();
}