Home > Enterprise >  Activate multiple forms at the same time
Activate multiple forms at the same time

Time:11-11

I organize my students to take the test by giving each student a Google form. To set the time to accept and reject responses for all forms, I used a trigger with a loop like this:

function stopFormRespones() {
    var ss = SpreadsheetApp.getActive();
    for (var l = 2; l <= ss.getSheetByName('listStudent').getLastRow(); l  ) {
        var link = ss.getSheetByName('listStudent').getRange('N'   l).getValue();
        var form = FormApp.openByUrl(link);
        form.setAcceptingResponses(false);
    }
}

function openFormRespones() {
    var ss = SpreadsheetApp.getActive();
    for (var l = 2; l <= ss.getSheetByName('listStudent').getLastRow(); l  ) {
        var link = ss.getSheetByName('listStudent').getRange('N'   l).getValue();
        var form = FormApp.openByUrl(link);
        form.setAcceptingResponses(true);
    }
}

function scheduledCollection() {
    var ss = SpreadsheetApp.getActiveSpreadsheet();
    var start = ss.getSheetByName('title').getRange('F12').getValue();
    var end = ss.getSheetByName('title').getRange('F14').getValue();
    var t = new Date();
    if (t > start & t < end) {
        openFormRespones();
    } else {
        stopFormRespones();
    }
}

function StartStop() {
    var ss = SpreadsheetApp.getActiveSpreadsheet();
    var start = ss.getSheetByName('title').getRange('F12').getValue();
    var end = ss.getSheetByName('title').getRange('F14').getValue();
    var limit = ScriptApp.newTrigger('scheduledCollection')
        .forSpreadsheet(ss)
        .onChange()
        .create();
}

However, if the number of forms is large (more than 50 forms), the trigger seems to have an error. It does not execute on time as set. I think the cause is because the loop runs out of time allowed. How can I fire the forms at once (without using loops)? Looking forward to your help.

CodePudding user response:

The main problem with your script is that it's reading one cell on each for loop iteration. This is a problem because

  • the time execution limit of Google Apps Script and
  • Google Apps Script methods are slow

The solution is to reduce the number of calls to Google Apps Script methods. This could be done by

  1. reading all the cells that we need from the same sheet on a single operation
  2. usign function parameters to avoid having to repeat operations in functions that are called by other functions.
  3. Split the number of forms to be processed on each execution. One way to do this is by parametizing scheduledCollection by passing the start row and number of links to be processed, create a function to set the parameter values for each set. The below code only include 2, setOne and setTwo, please add as many as you need.

Bonus:

  1. Remove variable declarations of variables that aren't used.

Note:

Avoid using on change trigger to call setOne, setTwo, etc. as this can of trigger executes on every spreadsheet change, instead use a custom menu to call of them one by one or use a user interface created with the HtmlService to call all of them asyncronously, this will allow them to run in parallel.

function stopFormRespones(links) {
    for (var l = 0; l < links.length; l  ) {
        var link = links[l];
        var form = FormApp.openByUrl(link);
        form.setAcceptingResponses(false);
    }
}

function openFormRespones(links) {
    for (var l = 0; l < links.length; l  ) {
        var link = links[l];
        var form = FormApp.openByUrl(link);
        form.setAcceptingResponses(true);
    }
}

function scheduledCollection(row,howMany) {
    var ss = SpreadsheetApp.getActiveSpreadsheet();

    // read values in a single operation. Use deconstruction to assign values to variables
    var [start, _ ,end] = ss.getSheetByName('title').getRange('F12:F14').getValues().flat();

    var t = new Date();
    
    // Read the links once
    var sheet = ss.getSheetByName('listStudent');
    var lastRow = sheet.getLastRow();
    var links = sheet.getRange(row,14,howMany).getValues().flat();

    if (t > start & t < end) {

        // pass links as a function parameter
        openFormRespones(links);

    } else {

        // pass links as a function parameter
        stopFormRespones(links);

    }
}

function setOne(){
  var row = 1;
  var howMany = 10;
  scheduledCollection(row,howMany);
}

function setTwo(){
  var row = 11;
  var howMany = 20;
  scheduledCollection(row,howMany);
}

Related

  • Related