Google SpreadSheet Query: Can I remove column header?

前端 未结 6 2000
执笔经年
执笔经年 2020-12-12 18:35

I\'m doing this query at my google spreadsheet:

=QUERY(H4:L35;\"select sum(L) where H=\'First Week\'\"; -1)

But it returns a little table w

6条回答
  •  隐瞒了意图╮
    2020-12-12 19:20

    =QUERY(QUERY(A1:D, "SELECT *", 1), "SELECT * OFFSET 1", 0)

    The outer query: "SELECT * OFFSET 1" excludes the first row (the header).

    The inner query explicitly specifies one row of headers (via the third argument supplied to QUERY), whilst the outer query specifies none.

提交回复
热议问题