- Project Approval: Link
- Project Proposal: Link
- Mentors: @cpg, @sanjitchak, @richard-h-glass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dumpEditResponseUrlsForYourForm() { | |
// Change this next line to use the id of your form | |
var myFormId = "id"; | |
var form = FormApp.openById(myFormId); | |
var formResponses = form.getResponses(); | |
for (var i = 0; i < formResponses.length; i++) { | |
var formResponse = formResponses[i]; | |
var string = ""; |