0
votes

I am trying to update another google sheet (not the one the form adds info to) when google form is submitted. I tried this with onEdit() but found out that it does not trigger for form edits.

Is there an alternative that triggers on manual edit AND form edit for google sheets?

1
You can read about the onFormSubmit event object hereCooper
You might want to take a look at this in the event that you have any problems with unwanted triggers.Cooper

1 Answers

0
votes

if you want your function to happen from both form submits and regular edits, add a function

onSubmit(){
   onEdit();
}