将解决注释插入单元格Google App Script

时间:2015-06-15 19:12:57

标签: google-apps-script google-sheets

我希望在Google Spreadsheets的单元格中添加评论。我有以下代码添加注释,但它不是我正在寻找的,因为它没有解析选项..

function onEdit() {
  var sheet = SpreadsheetApp.getActiveSpreadsheet();
  var cell = sheet.getActiveCell();
  var comments = cell.getComment();
  comments = comments + "\\nLast modified: " + (new Date());
  Browser.msgBox(comments);
  cell.setComment(comments);
}

上面得到了这个:

我想要这个:

1 个答案:

答案 0 :(得分:0)

目前,您无法通过Appscript修改评论。这是一个known issue。您必须使用备注进行到期或等待修复/添加评论。