我正在尝试制作一个基本的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});
}
即使Google脚本提供的其他清晰(选项)也可以正常工作。我尝试使用删除格式,内容,甚至检查其他方法clearNotes()
,一切正常。
我的直觉是我缺少有关评论的具体内容...
您的代码很好,似乎是报道的问题:
https://code.google.com/p/google-apps-script-issues/issues/detail?id=1818