Google Spreadsheet multiple column filter using OR
Posted
by thefroatgt
on Stack Overflow
See other posts from Stack Overflow
or by thefroatgt
Published on 2010-03-25T02:38:48Z
Indexed on
2010/03/25
2:43 UTC
Read the original article
Hit count: 545
google-docs
|google-spreadsheet
I have a Google Spreadsheet with 3 columns which are either blank or have a value. I want to get the count of the number of rows that has A and either B or C populated. If I were writing a SQL query it would be
select count(*)
from Table
where A is not null and (B is not null or C is not null)
But I can't for the life of me figure out how to get this in a Google Spreadsheet
© Stack Overflow or respective owner