如果输入重复,则覆盖Google工作表(用于表单回复)行

时间:2018-06-25 12:31:38

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

因此,我一直在尝试找出如何停止从Google表单在我的Google表格响应输出中出现的重复行。如果找到此链接,听起来像它确实满足我的要求(Form Google Script Prevent Duplicates),但我一生无法解决如何编辑给定答案以在工作表上工作的问题。

我提供了工作簿的屏幕快照,以给出希望在其上运行已编辑代码的数据结构的示例,下面还尝试了使代码在我的数据结构上正确运行的尝试。< / p>

我要在其上运行代码的工作表结构。我想使用电子邮件地址作为“唯一”标识符,因此可以使用该标识符来识别任何重复的行。

我尝试使代码适用于上述数据结构(我完全没有使用此脚本语言的背景,因此,如果我犯了一个显而易见的错误,请对我轻松一点):

function updateExisting() {
  var s = SpreadsheetApp.getActiveSheet(),
//      s = ss.getSheetByName(''),
      lastRow = s.getLastRow(),
      lastValues = s.getRange('A'+lastRow+':C'+lastRow).getValues(),
      name = lastValues[0][0],
      allNames = s.getRange('B2:B').getValues(), 
      row, len;

  // TRY AND FIND EXISTING NAME
  for (row = 0, len = allNames.length; row < len - 1; row++)
    if (allNames[row][0] == name) {
      // OVERWRITE OLD DATA
      s.getRange('A2').offset(0, 0, row, 
lastValues.length).setValues([lastValues]);
      // DELETE THE LAST ROW
      s.deleteRow(lastRow);
      break;}
}

1 个答案:

答案 0 :(得分:0)

关键字:重复项,Google,电子表格,表格,表单,提交,编辑,行,唯一。

此代码通过提交具有现有唯一值的现有行(如果存在)来防止在提交Google表单时Google表格中出现重复项。 该代码在电子表格中搜索一列并查找匹配项。我试图使其通用,这样就不必根据唯一标识符所在的列来更改代码。您需要在“用户设置”部分中进行几个设置,以使其起作用。但这比需要重写代码更好。

function updateExisting(columnWithUniqueIdentifier,sheetTabName) {
  var dataFromColumnToMatch,lastColumn,lastRow,rowWithExistingUniqueValue,rowOfDataJustSaved,
      sh,ss,valueToSearchFor;

  // USER SETTINGS - if the values where not passed in to the function
  if (!columnWithUniqueIdentifier) {//If you are not passing in the column number
    columnWithUniqueIdentifier = 2;//Hard code column number if you want
  }

  if (!sheetTabName) {//The sheet tab name was not passed in to the function
    sheetTabName = "Put your Sheet tab name here";//Hard code if needed
  }
  //end of user settings

  ss = SpreadsheetApp.getActiveSpreadsheet();//Get the active spreadsheet - this code must be in a project bound to spreadsheet
  sh = ss.getSheetByName(sheetTabName);

  lastRow = sh.getLastRow();
  lastColumn = sh.getLastColumn();

  //Logger.log('lastRow: ' + lastRow)

  rowOfDataJustSaved = sh.getRange(lastRow, 1, 1, lastColumn).getValues();//Get the values that were just saved

  valueToSearchFor = rowOfDataJustSaved[0][columnWithUniqueIdentifier-1];
  //Logger.log('valueToSearchFor: ' + valueToSearchFor)

  dataFromColumnToMatch = sh.getRange(1, columnWithUniqueIdentifier, lastRow-1, 1).getValues();
  dataFromColumnToMatch = dataFromColumnToMatch.toString().split(",");
  //Logger.log('dataFromColumnToMatch: ' + dataFromColumnToMatch)

  rowWithExistingUniqueValue = dataFromColumnToMatch.indexOf(valueToSearchFor);
  //Logger.log('rowWithExistingUniqueValue: ' + rowWithExistingUniqueValue)

  if (rowWithExistingUniqueValue === -1) {//There is no existing data with the unique identifier
    return;
  }

  sh.getRange(rowWithExistingUniqueValue + 1, 1, 1, rowOfDataJustSaved[0].length).setValues(rowOfDataJustSaved);
  sh.deleteRow(lastRow);//delete the row that was at then end
}