我已经制作了一个包含多个标签的电子表格。
我的'来源'标签1包含列'Id'和'Name' 我的“目标”标签2包含“Id”
我正在尝试遍历Target标签中的行并读取Id的值,然后在我的Source选项卡中搜索Id。当我找到Id时,我想获取“名称”字段中的值,并将其添加到我的目标选项卡ID的同一行的单元格中。
我很难完成迭代一个数组的逻辑,并确保在Target选项卡或Target Tabs内容的数组中找到值。在“目标”选项卡中,可能会出现多个ID,我需要将它们全部更新。
欢迎任何建议!
答案 0 :(得分:2)
这是一个建议:
/* let us say source array with name(columnA) & ID(columnB) is array 'source'
and target array with only IDs is array 'target', you get these with something like*/
var source = SpreadsheetApp.getActiveSpreadsheet().getSheets()[0].getDataRange().getValues();
// and
var target = SpreadsheetApp.getActiveSpreadsheet().getSheets()[1].getDataRange().getValues();// if other columns, change index values in the arrays : 0=A, 1=B ...
// then let's create a 3 rd array that will be the new target with ID + names, and call it 'newtarget'
var newtarget=new Array()
// the iteration could be like this :
for(i=0;i<target.length;++i){ // don't miss any ID
for(j=0;j<source.length;++j){ // iterate through source to find the name
if(target[i][0].toString().match(source[j][1].toString()) == source[j][1].toString()){
var newtargetrow=[source[j][0],target[i][0]] // if match found, store it with name (idx0) and ID (idx 1)
}else{
var newtargetrow=['no name found',target[i][0]] // if no match, show it in name column
}
newtarget.push(newtargetrow);// store result in new array with 2 columns
} //loop source
} // loop target
/* now you have a newtarget array that can directly overwrite the old target
using setValues() */
var sh = SpreadsheetApp.getActiveSpreadsheet().getSheets()[1];// assuming the target sheet is sheet nr2
sh.getRange(1,1,newtarget.length,newtarget[0].length).setValues(newtarget);
//
注意我没有测试这段代码,但它应该给你一个起点。我使用.match对字符串进行了比较,但你可以使用其他比较(数组元素之间的直接相等)...如果工作表数据中存在不需要的空格风险,你也可以删除ID中的空格...我不知道知道你的数据,这取决于你。