Skip to content

Instantly share code, notes, and snippets.

@BobRupholdt
BobRupholdt / sort-tabs.gs
Last active March 6, 2020 15:12 — forked from bpmore/sort-tabs.txt
Sort Tabs in Google Spreadsheets
/*
Sort sheets in a Google spreadsheet.
Allows specifying first/last sheets as arrays of sheet names
Requires Apps Script runtime powered by Chrome V8 (not Rhino)
*/
function sortSheets(){sortSheets_(first=[config.indexSheetName], last=["log"]);}
function sortSheets_ (first=[],last=[]) {
if(!Array.isArray(first)) throw "Parameter 'first' must be an array";