谷歌电子表格的限制为2.000.000个单元格。有没有办法随时了解您的电子表格有多大? 因此,只要达到极限,你就可以采取行动......
答案 0 :(得分:1)
一种方法是在google apps脚本中编写一个自定义函数,返回当前电子表格的单元格数。
function numberOfCells() {
return SpreadsheetApp.getActive()
.getSheets()
.reduce(function (pr, cu) {
return pr + (cu.getMaxColumns() * cu.getMaxRows());
}, 0)
}
将以上内容添加到脚本编辑器中,然后在电子表格中使用自定义公式,如下所示:
=numberOfCells()
希望有帮助吗?