合并谷歌应用程序脚本中的两个变量

发布于 2024-11-16 19:44:55 字数 150 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寄风 2024-11-23 19:44:55

我猜您想将 i 与列一起用作偏移量。

如果是这样,那么

function f(column) {
    var i = 4;
    SpreadsheetApp.getActiveSheet().getRange("A1").offset(0, column + i, 1, 1);
}

将返回一个单元格,即 A1 右侧的 4 + 列。

I'm guessing that you want to use i as an offset along with column.

If so then

function f(column) {
    var i = 4;
    SpreadsheetApp.getActiveSheet().getRange("A1").offset(0, column + i, 1, 1);
}

would return a single cell, 4 + column to the right of A1.

隔岸观火 2024-11-23 19:44:55

是的,有一个非常简单的方法可以做到这一点:我猜如果column =“A”并且i = 4,您想在A4单元格中设置一些内容,然后这样做:

function f(column)
{
  var i = 4;
  SpreadsheetApp.getActiveSpreadsheet().getRange(column+i).setValue("Hello World");
}

这里,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:

function f(column)
{
  var i = 4;
  SpreadsheetApp.getActiveSpreadsheet().getRange(column+i).setValue("Hello World");
}

Here, getRange() is accepting input value as "A4" or a1Notation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文