I have a spreadsheet that is linked to a form. Forms submissions are appended to the bottom of the spreadsheet by default. I wanted it so the most recent submission would appear at the top, so I created another spreadsheet and used the formula =SORT('Form Responses'!A1:F, 1, 0)
to copy the responses in descending order. This works great.
Now what I want to to is have another column on the sorted spreadsheet to add comments to the form responses. The problem is that any comments I make do not move down when another form response is submitted. I would like to add another row to the comments column whenever another form response is submitted. How would I do this?
**EDIT: I implemented a solution shown below. I ended up getting rid of the second spreadsheet and =SORT function and just using a script that is linked to the spreadsheet's onFormSubmit event