gpt4 book ai didi

javascript - Google 表格返回多列

转载 作者:行者123 更新时间:2023-11-30 11:30:35 27 4
gpt4 key购买 nike

我正在编写一个在 Google 表格中使用的脚本,它返回一个数组,用于填写多列和多行。
我有

var results = new Array(2);
var info = new Array(2);
info[0] = "some string";
info[1] = "other string";
results[0] = info;
results[1] = info;
return results;

第一列应该是“some string”,而第二列是“other string”

最佳答案

假设您询问的是 Google 电子表格中的自定义函数,您的代码当前返回一个 2x2 表格,其中包含以下值:

|----------------------------|
| some string | other string |
| some string | other string |
|----------------------------|

如果你想要以下内容:

|----------------------------|
| some string | other string |
|----------------------------|

那么你的代码应该是:

var results = new Array(2);
var info = new Array(2);
info[0] = "some string";
info[1] = "other string";
results[0] = info;
return results;

关于javascript - Google 表格返回多列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46373625/

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