Home > OS >  Apps Script Forms, onsubmit values cant be used
Apps Script Forms, onsubmit values cant be used

Time:05-19

I am creating a google form with a apps script manual trigger onsubmit like done Logs of execution

why is it behaving like that? is because the server cant catch the response itself onTime when the form is submited? how can i solve this issue?

Edit: To clarify my question, what i want is to catch the response to store them in another place instead of the binded spreadsheet

CodePudding user response:

You are using the event object for the onFormtSubmit trigger for a form. If you want the event object for the Spreadsheet then use the other onFormSubmit trigger.

onFormSubmit for Spreadsheet

onFormSubmit for Form

  • Related