标签: join google-sheets google-sheets-formula array-formulas google-sheets-query
我正在使用本文中介绍的解决方案:
https://webapps.stackexchange.com/questions/101926/google-sheets-query-to-select-a-large-range-of-columns-without-manually-entering
但是现在我需要从其他电子表格中查询数据。我知道importrange需要使用'Col'来指定列。但是,我不知道如何更改此字符串:
importrange
=arrayformula(join(",", substitute(address(1, column(C:F), 4), "1", "")))
答案 0 :(得分:1)
您可以使用:
=ARRAYFORMULA(JOIN(",", "Col"&COLUMN(C:F)))