我一直在尝试在我的电子表格上实现一个条件,基本上是一个带有三个条件单元格的检查表,其中包含“是”或“否”。我想要实现的所有(使用onEdit)是一个全部三个单元格包含“是”,输入下一列,输入最后一个是的日期。我已经设法创建了其他可以正常运行的脚本,但这个脚本让我感到难过。
由于
答案 0 :(得分:1)
由于可以单独编辑单元格,因此onEdit将始终需要检查所有条件单元格的值,并仅在所有条件单元格都为“是”时写入时间戳。
function onEdit(event) {
var conditionalCells = [ "B1", "B2", "B3" ]; // Array of monitored conditionals
var inList = false; // assume edit was outside of the conditionals
var allYes = true; // and that all values are "Yes".
var sheet = event.source; // Sheet that was edited
var cell = event.range.getA1Notation(); // get range description
// Loop through all conditionals checking their contents.
// Verify that the edit that triggered onEdit() was in one
// of our conditional cells, setting inList true if it was.
for (var i = 0; i < conditionalCells.length && allYes; i++) {
if (cell == conditionalCells[i]) inList = true;
allYes = (sheet.getRange(conditionalCells[i]).getValue() == "Yes");
};
// If this was our final Yes, record the date.
// By validating inList, we ensure we record only the first time
// all conditionals are "Yes".
if (inList && allYes) sheet.getRange("C1").setValue(new Date());
}