Google Apps Script - How to get corresponding record in destination spreadsheet in onFormSubmit (Google Forms Event)?
问题 I catch this event when a respondent sends a response https://developers.google.com/apps-script/guides/triggers/events#form-submit_4 Inside this function, I want to add some information into the corresponding row (Google creates this row automatically) in the destination spreadsheet In order to do that, first I need to find this row The best way I can find at the moment is by using sheet.getLastRow() https://developers.google.com/apps-script/reference/spreadsheet/sheet#getlastrow But there is