How to Edit a Google Form Response After Submitting
Enable response editing before people submit, help respondents keep their edit link, and recover an existing response link as the form owner when necessary.
Travis
Published
A respondent can edit a submitted Google Form only when the owner enables Allow response editing and the respondent can open that response’s unique edit link. If the link is missing, the respondent must contact the owner; an owner with edit access can recover it with Apps Script.
Last verified: July 24, 2026.
There are two different problems hidden inside this question:
- A form owner wants to let people change their answers.
- A respondent already submitted and cannot find a way back.
The solution depends on which one you are.
For Form Owners: Enable Response Editing
- Open the form.
- Click Settings.
- Expand Responses.
- Turn on Allow response editing.
- Publish the updated form.
Google Forms will show an Edit your response link after a respondent submits. That link belongs to one specific submission.
For Respondents: Save the Edit Link
After submitting:
- Stay on the confirmation screen.
- Click Edit your response, or copy the link somewhere safe.
- Use that same link when you need to change an answer.
- Submit the form again to save the update.
Editing updates the existing submission; it does not create a second row as a new response.
Send Respondents a Copy of Their Answers
If you collect email addresses, open Settings > Responses and set Send responders a copy of their response to:
- When requested, or
- Always.
A response receipt can make the edit link easier to retain. It is not a perfect recovery system: Google warns that spam filters and counter-abuse measures can prevent some receipts from arriving.
Tell respondents to save the confirmation-page link even when receipts are enabled.
What If the Respondent Lost the Link?
A respondent cannot derive the edit link from the normal form URL. They should:
- Search their inbox and spam folder for the response receipt.
- Reopen the original form while signed in to the same permitted account.
- Contact the form owner if no edit option appears.
If response editing was not enabled, the respondent cannot turn it on. Only the owner or an editor can change the form's setting.
Owner Recovery: Generate Edit URLs With Apps Script
Google's Apps Script API provides getEditResponseUrl() for each stored Form response. Use this only when you own or administer the form and have a safe way to deliver each private link to the correct person.
- Open the form.
- Open Extensions > Apps Script.
- Add this script:
function listEditResponseUrls() {
const form = FormApp.getActiveForm();
const rows = form.getResponses().map((response) => [
response.getTimestamp(),
response.getRespondentEmail(),
response.getEditResponseUrl(),
]);
console.log(rows);
}- Run the function and approve the requested Forms permission.
- Match each URL to the correct response using data you are authorized to use.
- Send the link privately.
If email collection was not enabled, getRespondentEmail() may be blank. Do not guess which respondent owns a link.
Treat Edit Links Like Private Access Links
Google's developer documentation notes that anyone who has a valid edit URL can edit that response, subject to any account access restrictions on the form.
Therefore:
- Do not publish edit links in a shared spreadsheet.
- Do not send one person's link to a group.
- Avoid logging private response links in systems with broad access.
- Delete temporary exports after the recovery task.
Important Limitations
The form must still permit the edit
If Allow response editing is turned off, the edit URL leads to a message explaining that editing is disabled.
A closed form may prevent editing
Community guidance indicates that response editing requires the form to remain available for submissions. Test the exact close-date or response-limit workflow before promising an editing window after registration closes.
“Allow response editing” is for respondents
It does not give the form owner a pencil button to rewrite a person's answers inside the Forms response viewer. Owners should preserve original submissions and use the respondent-specific edit flow when a correction is necessary.
A pre-filled link is not an edit link
A pre-filled link starts a new response with suggested answers. It does not update an existing submission. Look for getEditResponseUrl(), not toPrefilledUrl(), when recovering an existing response.
Recommended Setup Before You Share the Form
- Enable Allow response editing.
- Decide whether verified email collection or typed email collection is appropriate.
- Enable response receipts when useful, while documenting the delivery caveat.
- Add a confirmation message telling people to save the edit link.
- Test one full submit-and-edit cycle with a non-owner account.
Related Google Forms Fixes
Get the Add-On
Get the Add-On - Free
Text To Table Converter
Work faster inside Google Forms, Docs, Sheets, and Slides: Install the free Text To Table Converter add-on for quiz building, choice syncing, QR codes, document tools, and more.