Google表格从值数组中查询吗?

时间:2019-05-15 08:30:40

标签: google-sheets

我需要构建多个工作表,这些工作表将用于根据数字标记创建文本注释。文本注释和值配对将存储在单独的工作表中,以供重新使用。 问题是,数据将存储在值的二维“数组”中,因此显然我不能使用普通查询。

为了与您讨论问题并使事情变得更容易,我创建了一个同时包含参考数据和用户数据的原型,但是,这些将被拆分为单独的工作表。

例如: enter image description here

如何查询范围A1:G4以将与数字值配对的注释拉出?

我有found this similar problem,但我想知道是否有更有效的方法来解决问题。

作为最后的选择,我可以这样创建参考表:

  A     B     C
1 Speed 5 text-comment-5
2 Speed 6 text-comment-6
3 Speed 7 text-comment-7

然后类似:

=QUERY('Sheetname'!A1:C; "Select C where A = 'Speed' and B = 6")

您的想法?

1 个答案:

答案 0 :(得分:0)

这似乎可行:

=QUERY(IMPORTRANGE("https://docs.google.com/spreadsheets/d/ID#", "sheet2!A1:G4"), "select Col"&(B10-3)&" where Col1 contains 'Speed'")