Skip to content

Instantly share code, notes, and snippets.

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 niccolomineo/5758c0e128e0d2ab2788c9c1c103d9d1 to your computer and use it in GitHub Desktop.
Save niccolomineo/5758c0e128e0d2ab2788c9c1c103d9d1 to your computer and use it in GitHub Desktop.
Select rightmost sheet in a Google Spreadsheet
function selectRightmostSheet()
{
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet()
var sheets = spreadsheet.getSheets()
spreadsheet.setActiveSheet(sheets[sheets.length-1])
}
selectRightmostSheet()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment