我有一个用于Google Docs电子表格的脚本,在该脚本中,当填充特定列中的任何单元格时,它会自动在该行的另一列中放置时间戳:
function onEdit() {
var s = SpreadsheetApp.getActiveSheet();
if( s.getName() == "Sheet1" ) { //checks that we're on the correct sheet
var r = s.getActiveCell();
if( r.getColumn() == 9 ) { //checks the column
var nextCell = r.offset(0, 3);
if( nextCell.getValue() === '' ) //is empty?
var time = new Date();
time = Utilities.formatDate(time, "Canada/Eastern", "M/dd/Y, h:mm:ss");
nextCell.setValue(time);
};
};
}
剧本写得很好。但是,如果清除了该单元格,我希望脚本删除该时间戳。
或者,我可以提出一些不同的问题:当行中的另一个特定单元格已被清除时,如何清除特定的单元格?
发布于 2014-06-26 11:50:19
代码几乎是一样的,我对其进行了一些简化,以便更容易地理解它在做什么。
编辑:
更好的代码,以防止问题时,只是修改一个单元格在第9。
我使用了onEdit触发器中的参数(在本例中称为e),有关详细信息,请参阅文档。
function onEdit(e) {
var s = SpreadsheetApp.getActiveSheet();
Logger.log(JSON.stringify(e)+' ------------------> value = '+e.value);
var r = e.range;
var nextCell = r.offset(0, 3);
if( s.getName() == "Sheet1" && r.getColumn() == 9 ){ //checks that we're on the correct sheet & column
if( nextCell.getValue() === '' && e.value !=null){ //is empty?
var time = new Date();
time = Utilities.formatDate(time, "Canada/Eastern", "M/dd/Y, h:mm:ss");
nextCell.setValue(time);
}else{
if(e.value==null){ nextCell.setValue('')};
}
}
}
https://stackoverflow.com/questions/24438559
复制