Google SpreadSheet Query: Can I remove column header?
Try this:
=QUERY(H4:L35,"select sum(L) where H='First Week' label sum(L) ''")
Hope that Helps!
=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.
=INDEX(QUERY(H4:L35;"select sum(L) where H='First Week'"; -1),2,1)
This just parses the returned array and selects the 2nd record returned in the first column.
You can also do this with the filter function which is less compute intensive.
=SUM(FILTER(L4:L35, H4:H35 = "First Week"))