当用户提交答案时,如何在脚本中检索谷歌表格的分数

时间:2017-03-13 10:16:43

标签: google-apps-script google-sheets google-form google-form-quiz

我想在我的脚本中检索用户提交答案后的测验谷歌表格评分。

你知道appscript中检索这个的方法吗? 感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您可以使用以下脚本执行此操作..

  function myFunction() {

var ss = SpreadsheetApp.getActiveSheet();
var headers = ss.getRange(1, 1, 1, ss.getLastColumn()).getValues(); // Get all the values in the header row.
var scoresCol = 0; // This var will be the index of the score column. 

for(var i = 0; i < headers[0].length; i++){ // Loop to find the index of the score column and set the index in the scoresCol var.
if(headers[0][i] == 'Score'){
scoresCol = i + 1; 
break;
  }
 }

var scores = ss.getRange(2, scoresCol, ss.getLastRow()).getValues(); // Get all values in that column. 

}