I\'ve found the basic solution https://stackoverflow.com/a/4809413/1438650 but it lacks both the conditional and non-contiguous aspects of my project. I need the the copy to
Here are some tips for you:
getValues()
to get all the values at once, instead of one at a time like you are doing now.if()
statement around your appendRow()
call, using the condition you want to test for.appendRow()
, since there is no method to append multiple rows at once.