合并谷歌应用程序脚本中的两个变量
function f(column) {
var i = 4;
}
我想合并“column”和“i”变量,以便我可以将其用作电子表格函数 getRange(); 中的输入;
有没有一种简单的方法可以做到这一点?
function f(column) {
var i = 4;
}
I want to merge the "column" and "i" variable so I can use it as input in the spreadsheet function getRange();
Is there a simple way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜您想将 i 与列一起用作偏移量。
如果是这样,那么
将返回一个单元格,即 A1 右侧的 4 + 列。
I'm guessing that you want to use i as an offset along with column.
If so then
would return a single cell, 4 + column to the right of A1.
是的,有一个非常简单的方法可以做到这一点:我猜如果column =“A”并且i = 4,您想在A4单元格中设置一些内容,然后这样做:
这里,
getRange()
接受“A4”或 a1Notation 形式的输入值。Yup, there is a pretty simple way to do that: I'm guessing if column="A" and as i=4, you want to set something into A4 cell, then do like this:
Here,
getRange()
is accepting input value as "A4" or a1Notation.