count matched rows

  • Thread starter Thread starter cape
  • Start date Start date
C

cape

I need to count all rows that have "15-1" in one column(G:G) and
then 4.01 in column O:O.


So if 4 is in g and o is > then 4.01. dont want that counted.

Thanks in advanc
 
Hi
try
=SUMPRODUCT(--(G1:G1000="15-1"),--(O1:O1000>4.01))

Note: SUMPRODUCT does not accept ranges like O:O

Frank
 
Back
Top