-1

I am using this formula:

=QUERY(gis_sources!$B$2:$L$3008;"SELECT SUM(J)/SUM(I) WHERE (B = 'i.bat' AND MONTH(C) = 7)")

But it gives me this header row:

enter image description here

How can I remove the header?

tehhowch
  • 9,645
  • 4
  • 24
  • 42
  • 3
    Possible duplicate of [Google SpreadSheet Query: Can I remove column header?](https://stackoverflow.com/questions/26867775/google-spreadsheet-query-can-i-remove-column-header) – Max Makhrov Aug 22 '18 at 12:25

1 Answers1

1

Add label SUM(J)/SUM(I) '' to the end of the query text to remove the header.

Add label SUM(J)/SUM(I) 'your name' to remove add your name as the header.

The text of query:

"SELECT SUM(J)/SUM(I) WHERE (B = 'i.bat' AND MONTH(C) = 7) label SUM(J)/SUM(I) ''

Max Makhrov
  • 17,309
  • 5
  • 55
  • 81