Google 没有 header 的查询结果

Google query result without header

以下公式为我生成 2 行结果:header 行和数据行

=QUERY(A1:I7,"select B,C where A=1",-1)

我想要一个 single-row 结果:只有数据,没有 header。

我发现了类似的问题,但是 none 的答案适用于我的问题,因为我没有使用 SUM() 或其他聚合函数。

Google SpreadSheet Query: Can I remove column header? https://productforums.google.com/forum/#!topic/docs/0CPyUKPSl5E https://productforums.google.com/forum/#!topic/docs/UEYtMBH_Wnk

我找到了答案here:

=QUERY(A1:I7,"select B,C where A=1 label B '',C ''",-1)

您可以省略所有 headers,而不是使用 '' 将列名称标记为空白:

=QUERY('Все'!A1:I7,"select B,C where A=1", 0)

通过从输入中删除 headers,您可以从输出中删除 headers。