0

我一直在研究这个功能,并希望在弹出的消息中显示特定单元格的值。

如果有任何帮助,这个单元格与“当前单元格”在同一行,我只是非常迷茫,甚至不确定这是否可能。

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());
  }
}

感谢您的关注!

4

1 回答 1

2

您可以简单地在 if 条件中添加另一条警报消息,如下所示:

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());
    ui.alert('The current date is: ' + new Date())
  }
}
于 2020-07-30T14:37:13.677 回答