View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff Biff is offline
external usenet poster
 
Posts: 1,688
Default count text in column a if column b = 25

Hi!

Try this:

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

Biff

"jettp" wrote in message
...
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.