gpt4 book ai didi

google-apps-script - 使用 50,000 个单元格时出现错误 "This action would increase the number of cells in the worksheet above the limit"

转载 作者:行者123 更新时间:2023-12-02 16:52:15 34 4
gpt4 key购买 nike

我正在尝试使用脚本编辑器将 CSV 从 URL 下载到新的空 Google 工作表中。

 var raw = UrlFetchApp.fetch(final_url, options).getContentText();
var data = Utilities.parseCsv(raw, "|");
Logger.log(data[0].length); /// 17 (columns)
Logger.log(data.length); /// 2849 (rows)

var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getActiveSheet();
sheet.getRange(1, 1, data.length, data[0].length).setValues(data);

据我了解,我总共有 48433 个单元格,但是当我尝试将其写入工作表时,出现错误:

This action would increase the number of cells in the workbook above the limit of 5000000 cells.

有什么想法吗?

最佳答案

在没有看到实际工作表和 CSV 文件的情况下,我们只能推测问题出在哪里。我最好的猜测是您没有考虑到 5,000,000 个单元格的限制适用于整个“工作簿”。因此,如果您有多个选项卡(工作表),那么这些工作表中使用的单元格总数不能超过 5,000,000 个单元格。

关于google-apps-script - 使用 50,000 个单元格时出现错误 "This action would increase the number of cells in the worksheet above the limit",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58061314/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com