count if

  • Thread starter Thread starter cletabujol
  • Start date Start date
C

cletabujol

how do i get the count if function to count based on certain concrete
conditions...if cell a1 >= condition a and <= condition b then add 1
to count...
 
single cell

=IF(AND(A1>=condition_a,A1<=condition_2),1,0)

range of cells

=SUMPRODUCT(--(A1:A10>=condition_1),--(A1:A10<=condition_2))

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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