Created
August 21, 2019 21:15
-
-
Save johnvilsack/2e0bb0336b56fce076cd6c134cb549c4 to your computer and use it in GitHub Desktop.
GAS- Set Eval Row
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is the code to edit | |
function evalRow(thisSheet, editedRow) { | |
// EDIT THE COLUMNS HERE TO CHANGE WHICH ROWS ARE IN ARRAY | |
var watchedRange = "A"+editedRow+":E"+editedRow; | |
var rowArray = thisSheet.getRange(watchedRange); | |
var rowValues = rowArray.getValues(); | |
// @@ DEBUG | |
thisSheet.getRange('I14').setValue(watchedRange); | |
// @! DEBUG | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment