Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created November 13, 2021 06:25
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 jrichardsz/8125cc1ab224734e64d0a7cb480559be to your computer and use it in GitHub Desktop.
Save jrichardsz/8125cc1ab224734e64d0a7cb480559be to your computer and use it in GitHub Desktop.
google apps script notes

entire column range

function sumHours(range) {
  return JSON.stringify(range);
}

is an array of items in which any item is another array containg the cell value, in this case the row

|row1|
|row2|
|row3|

is a [["row1"],["row2"],["row3"]]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment