So I am sending out a mass amount of forms where each form is specifically designated for that specific responder (the context of the questions in the form changes for the user it is submitted for), that part is fine. But I want to record their response into a master spreadsheet where each user is represented by a sheet in that spreadsheet. I want to do something like
//activeRef is a Row object on another spreadsheet
//responseSS is an already existing spreadsheet
For each member - of which there are N - {
responseSS.insertSheet(activeRef.refereeID);
activeResponseSheet = responseSS.getSheets()[N];
conflForm = FormApp.create('Conflict Declerations')
conflForm.setDescription(DESCRIPTION)
.setAllowResponseEdits(true)
.setShowLinkToRespondAgain(false)
.setDestination(FormApp.setDestinationType.SHEET, responseSS.getSheets()[N]);
}
Unfortunately, you can't set a destination to be a specific sheet like that, it has to be a spreadsheet from what I understand. I could have a specific spreadsheet for each form response but there will be dozens to hundreds of these - it would be more manageable to have each response recorded into one sheet in a master spreadsheet.
Is there a possible solution to this?
Thanks