如何使用Google Apps脚本匹配一列并替换另一张工作表中的另一列(对应)?

时间:2019-06-18 00:29:18

标签: google-apps-script google-sheets

我在Google电子表格中有两张纸,一张包含原始数据和两列(名称,类别),另一张包含重新分类的数据(名称,新类别)。

我希望使用apps脚本在原始工作表中找到重新分类工作表中列出的所有名称,然后用重新分类数据表中的新类别替换所有相应的类别。换句话说,在两个工作表中匹配“名称”,然后用工作表2中的“新类别”替换工作表1中的“类别”。

并非原始工作表中的所有名称都将包含在重新分类的数据表中,它很可能只会查找并替换一些条目。

我对Apps脚本非常陌生,所以不确定从哪里开始。

例如,如果原始工作表中的“西兰花”被归类为“蔬菜”,梨被归类为“水果”,但是在第二页中,“西兰花”被归类为“苦味”,梨被归类为“甜”,我希望该应用在原始工作表中分别将“蔬菜”和“水果”分别替换为“苦味”和“甜味”。

1 个答案:

答案 0 :(得分:0)

此功能将新类别添加到第一张工作表中,在我的情况下为Sheet1。我本来可以很容易地用工作表1中的第二个类别替换第一个类别,但是这样可以更轻松地判断函数是否捕获了正确的数据。

function findCats() {
  var ss=SpreadsheetApp.getActive();
  var sh1=ss.getSheetByName('Sheet1');
  var rg1=sh1.getRange(2,1,sh1.getLastRow()-1,sh1.getLastColumn()+1);
  var vA1=rg1.getValues();
  var sh2=ss.getSheetByName('Sheet2');
  var rg2=sh2.getRange(2,1,sh2.getLastRow()-1,sh2.getLastColumn());
  var vA2=rg2.getValues();
  var obj2={nA:[]};
  for(var i=0;i<vA2.length;i++) {
    obj2[vA2[i][0]]=vA2[i][1];
    obj2.nA.push(vA2[i][0]);
  }
  for(var i=0;i<vA1.length;i++) {
    var idx=obj2.nA.indexOf(vA1[i][0]);
    if(idx>-1) {
      vA1[i][2]=obj2[vA1[i][0]];
    }
  }
  rg1.setValues(vA1);
}

之前的工作表1:

enter image description here

之前的Sheet2:

enter image description here

运行功能后的Sheet1:

enter image description here


反映电子表格布局和更新Category2列的修订


function so5664033702() {
  var ss=SpreadsheetApp.getActive();  
  var tarsheet=ss.getSheetByName('Old Categories');
  var tarLC =tarsheet.getLastColumn();
  var tarLR = tarsheet.getLastRow();
  var tarRange=tarsheet.getRange(2,1,tarLR-1,tarLC);
  //Logger.log("DEBUG: Target range ="+tarRange.getA1Notation());
  var tarValues=tarRange.getValues();
  // get the Cat2 values so that the range can be easily updated after the loop
  var tarcat2Range = tarsheet.getRange(2,6,tarLR-1);
  //Logger.log("DEBUG: Target Cat2 range ="+tarcat2Range.getA1Notation());
  var tarcat2Values = tarcat2Range.getValues();
  var srcsheet=ss.getSheetByName('New Categories');
  var srcLR = srcsheet.getLastRow();
  var srcRange=srcsheet.getRange(2,1,srcLR-1,3);
  //Logger.log("DEBUG: Source Range ="+srcRange.getA1Notation());
  var srcValues=srcRange.getValues();
  // create array to build names  
  var tarNames = [];
// loop through Old Category Names to pupulate the array  
  for (z=0;z<tarValues.length;z++){
    tarNames.push(tarValues[z][1]);
  }   
  // loop through the new category Names to find the match on Old Categories
  // the value "c" will be the row number.
  for (i=0;i<srcValues.length;i++){
    var c = tarNames.indexOf(srcValues[i][0]);
    //Logger.log("DEBUG: c = "+c+", value: "+srcValues[i][0]+", cat2:"+tarcat2Values[c][0] +", new Cat2:"+srcValues[i][2]);
    // if c = -1, then there is no match; otherwise update the OldCategory/category2 value with the value from New category
    if (c!=-1){
      tarcat2Values[c][0] = srcValues[i][2];      
    }
  } // end of the New category Loop
  // setValues for the Cat2 range with the updated values.
  tarcat2Range.setValues(tarcat2Values); 
}