在Apps Script中,0的值被默认标记为空单元格,可以通过以下代码来解决:
// 设置Google Sheet中单元格的值为0 sheet.getRange(row, column).setValue(0); // 将0设置为不为空单元格 sheet.getRange(row, column).setNumberFormat('0');
以上代码首先设置一个单元格的值为0,然后使用setNumberFormat()方法将其设置为不为空单元格。这样0的值就不会被标记为空了。
上一篇:AppsScript执行完成但未返回结果
下一篇:AppsScript中的.isChecked()==true,IFELSE语句输出不正确