count text in column a if column b >= 25

G

Guest

I'm trying to count the # of clients who have a system status of out of
business in column A that have less than 25 employees. Column B has the # of
employee.

Col A Col B
Out Bus 15
Sold 32
Out Bus 57
IH 8
Out Bus 22

I have tried variations of sumproduct, countif, but nothing I'm doing is
working. I'm sure there is a simple solution, but need help finding it.
 
B

Biff

Hi!

Try this:

=SUMPRODUCT(--(A1:A10="out bus"),--(ISNUMBER(B1:B10)),--(B1:B10<25))

Biff
 

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