下面是我用于 Google Docs 电子表格的脚本。
这些链接显示了我在做什么:
http://i.stack.imgur.com/uGik7.png
http://i.stack.imgur.com/AbKnQ.png
如何设置“标志”,以便当我第二次运行此脚本时,它不会添加以前添加的库存项目?
function myFunction() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet1 = ss.getSheetByName("Purchase Orders");
var sheet2 = ss.getSheetByName("Inventory");
var data = sheet1.getDataRange();
var i_data = sheet2.getDataRange();
var lastRow = data.getLastRow();
var iLastRow = i_data.getLastRow();
for (i=1;i<=lastRow;i++) {
if (data.getCell(i, 5).getValue() == "stock"){
for (n=1;n<=iLastRow;n++){
if (data.getCell(i,3).getValue() == i_data.getCell(n,3).getValue()) {
i_data.getCell(n, 1).setValue(i_data.getCell(n,1).getValue() + data.getCell(i,2).getValue());
}
}
}
}
}
我想我正在尝试这样做:一旦将项目添加到库存中,脚本就会在该行的 i 列中添加一个 x。然后当脚本再次运行时,它会跳过 i 列中带有 x 的行