Recently, I\'ve been conducting a survey. I began creating it in Excel Forms Online but switched to Google Forms after I realized several of its shortcomings. I hit a few sn
The code suggested here works, as I just tried it myself on Feb 13, 2017.
https://docs.google.com/... /forms/d/1ZIrWiRZQrUsz1y8OBoeB7AtCOM4Ax4FxAQm8xAR1OYo/edit
Replace all the text that shows up in the Code.js
section with the following, AFTER you've edited it and put your form id in place of YOUR_FORM_ID_HERE below.
function dumpEditResponseUrlsForYourForm() {
// Change this next line to use the id of your form
var myFormId = "YOUR_FORM_ID_HERE";
var form = FormApp.openById(myFormId);
var formResponses = form.getResponses();
for (var i = 0; i < formResponses.length; i++) {
var formResponse = formResponses[i];
Logger.log(formResponse.getEditResponseUrl());
}
}