将数组传递给包含在ArrayFormula中的自定义函数?

时间:2018-05-07 05:56:10

标签: google-apps-script google-sheets array-formulas custom-function

我有一个电子表格,其中包含出于格式原因使用合并单元格的列。我正在尝试创建镜像第一组列的列,但在所有受影响的行上使用合并的单元格值。由于我在网上找到的自定义功能,我可以做到这一点。我无法做到的是在数组式中包含这个,我不知道为什么。

以下是电子表格的小版本: https://docs.google.com/spreadsheets/d/1mp8PpgO4sI60bbx__1L4a17qL1VGIB9QVB910vTyhg0/edit?usp=sharing

自定义功能是:

/**
* Takes into account merged cells and returns the value of the merged cell 
* for all the cells within the merged range, rother than just the top left 
* cell of the merged range.
*
* Copied from https://webapps.stackexchange.com/questions/110277/how-do-i-reference-the-values-of-merged-cells-in-formulas
*
* Used by Patrick Duncan. - 7 May 2018
*/

function cellVal(cellAddress) {
  var cell = SpreadsheetApp.getActiveSheet().getRange(cellAddress);  
  return (cell.isPartOfMerge() ? cell.getMergedRanges()[0].getCell(1, 1) : cell).getValue();
}

没有Arrayformula的公式是:

  

= cellVal2(索引(地址(行(),5,4)))

我正在尝试的是:

  

= ARRAYFORMULA(cellVal2(索引(地址(行(E3:E),5,4))))

知道我在这里做错了吗?

干杯,

帕特里克

1 个答案:

答案 0 :(得分:1)

这次修改怎么样?我认为有几种解决方案适合您的情况。所以请把它想象成其中之一。

修改要点:

  • index(address(row(E3:E30),5,4))cellAddress时,cellAddress[["E3"], ["E4"], ["E5"],,,]。这是一个二维数组。
    • 展平getRangeList()的这个二维数组。
  • 使用getRangeList()将展平的数组转换为范围数组。
  • 使用转换后的范围检索每个值并返回它们。

修改后的脚本:

function cellVal3(cellAddress) { // Modified the function name to "cellVal3"
  cellAddress = Array.prototype.concat.apply([], cellAddress);
  var cells = SpreadsheetApp.getActiveSheet().getRangeList(cellAddress).getRanges();
  return cells.map(function(cell){return [(cell.isPartOfMerge() ? cell.getMergedRanges()[0].getCell(1, 1) : cell).getValue()]});
}

用法:

使用此自定义功能时,请使用以下内容。

=ARRAYFORMULA(cellVal3(index(address(row(E3:E30),5,4))))

=cellVal3(index(address(row(E3:E30),5,4)))

参考文献:

如果我误解了你的问题,我很抱歉。