COUNTIF

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

I need a formula to count the # of rows where the contents
of Cell A2 are in column I and column E contains "S".
 
=SUMPRODUCT((I2:I100=A2)*(E2:E100="S"))

or

=SUMPRODUCT((I2:I100=A2)*(ISNUMBER(SEARCH("S",E2:E100))))

if can be part of a string. It is probably the first one you are looking
for
 
Back
Top