I need function to simply trigger another function if a specific Google Sheet column's value (or values) is "START".
Something like this: If column AUTO!N2:N is "START", then trigger the function letsStart()" If column AUTO!N2:N is not "START", then do nothing.
Simple as that :)
Is this possible?
The letsStart() function already ends with:
var sh = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("AUTO")
.getRange('N2:N')
.createTextFinder('START')
.replaceAllWith('STOP')
...and working fine.
This is to avoid unintended looping.