Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Last active May 24, 2018 13:36
Show Gist options
  • Save oshliaer/68419878281e30f590b02b4627d23b43 to your computer and use it in GitHub Desktop.
Save oshliaer/68419878281e30f590b02b4627d23b43 to your computer and use it in GitHub Desktop.
function example(){
var gid = '697110211';
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
Logger.log(getSheetByGid(spreadsheet, gid));
}
function getSheetByGid(spreadsheet, gid){
return spreadsheet.getSheets().find(findByGid_, gid);
}
function findByGid_(sheet){
return this == sheet.getSheetId();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment