我正在尝试制作基本的Google脚本功能,删除第一个单元格上的注释。 这不起作用:
function deleteCommentinCellA1() {
// Get cell A1 on the first sheet
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var cell = sheet.getRange("A1");
cell.clear({commentsOnly : true});
}
即使其他clear(options) provided by Google script工作正常。我尝试删除格式,内容同样的功能,甚至检查了另一种方法clearNotes()
,一切正常。
我的预感是我遗漏了一些关于评论的具体内容......
答案 0 :(得分:1)
您的代码很好,似乎是一个报道的问题:
https://code.google.com/p/google-apps-script-issues/issues/detail?id=1818