I have a Google Query that is designed to import data from a single column in 6 separate Google Sheets. I also need to exclude the Header row in the source spreadsheet. My query is constructed as follows:
=query({importrange("Key","Range");importrange("Key","Range");......)},"Select * where Col1 <> ''",0)
What is happening is all the data from each source sheet is coming in but at each block of data the column header is also shown. Example below:
Header
data
data
data
Header
data
data
data
Header
data
data
The ,0)
at the end is my attempt to exclude the header row. It works when I use the following query with a date column:
... where Col1 is not null",0)