Skip to content

Instantly share code, notes, and snippets.

View thekosmix's full-sized avatar
💭
Jekylling

Siddharth Kumar thekosmix

💭
Jekylling
View GitHub Profile
@thekosmix
thekosmix / Code.gs
Last active April 22, 2024 09:04
Retrospective tool using Google Sheets
// Sheet link: tinyurl.com/sid-retro-tool
// Below code is to be pasted in AppScript Editor
UPVOTE_COLUMN = [2,7,12]
DOWNVOTE_COLUMN = [3,8,13]
function onSelectionChange(evt) {
const activeSheet = SpreadsheetApp.getActiveSheet();
const selectionRange = evt.range;
const userSelectedARange = selectionRange.getNumRows() > 1 || selectionRange.getNumColumns() > 1;