我一直在研究这个功能,并希望在弹出的消息中显示特定单元格的值。
如果有任何帮助,这个单元格与“当前单元格”在同一行,我只是非常迷茫,甚至不确定这是否可能。
function my2ndFunction() {
var cell = SpreadsheetApp.getCurrentCell();
var ui = SpreadsheetApp.getUi();
var response = ui.alert('Do you want to start?', '', ui.ButtonSet.YES_NO);
var output;
if (response == ui.Button.YES) {
cell.setValue(new Date());
}
}
感谢您的关注!