I'm using a query function to copy over rows if it contains any text and/or numbers from column 12 (this column contains addresses). Column 12 has blank cells at times, so I would only like to copy over the entire row only if there's an address listed in this column. I've seen formulas where it's written to pick up on specific words, but not for a series of any numbers and letters in general.
Here's what I have so far:
=QUERY(QUERY('Zapier Tax Leads'!$A$2:$AQ$100000000,"SELECT A, B, C, D, E, F, G, H, I, J, K",1), "SELECT * WHERE Col12 contains "TEXT",1")
I'm getting a Formula parse error. which I am assuming it's coming from the "SELECT * WHERE Col12 contains "TEXT" part.
Any suggestions?
"") instead of single ones (''). So it should be'TEXT'. Also, what do you mean by'TEXT'? Do you probably mean that the cells contain some text?. In other words are not empty? - marikamitsos