What formula/fn would I use to count multiple condition records?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need a formula/function that would work to count the number of records that
have >=7 in the 1st column, <7 in the 2nd column and >=7 in the 3rd column.
 
Joshcat99 said:
I need a formula/function that would work to count the number of records
that
have >=7 in the 1st column, <7 in the 2nd column and >=7 in the 3rd
column.

Hope this works:
=SUMPRODUCT(--(A281:A288>=7),--(B281:B288<7),--(C281:C288>=7))

Ciao
Bruno
 
=COUNTIF(A:A,">=7")+COUNTIF(B:B,"<7")+COUNTIF(C:C,">=7")

Vaya con Dios,
Chuck, CABGx3


Joshcat99 said:
I need a formula/function that would work to count the number of records that
have >=7 in the 1st column, <7 in the 2nd column and >=7 in the 3rd
column.
 
Hi,

You may use the sumif array formula as well (Ctrl+Shift+Enter)

=sum(if((range>=7)*(range2<7)*(range3>=7),1,0))

Regards,

Ashish Mathur
 

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

Back
Top