COUNTIF

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".
 
P

Peo Sjoblom

=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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top