• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

sumproduct with multiple crieria

desert rat

New Member
I am using this SUMPRODUCT to find numbers >=10


=SUMPRODUCT(--(N2:N236>=10),SUBTOTAL(103,OFFSET(N2,ROW(N2:N236)-ROW(N2),0)))


any ideas how i can modify this so that it counts only the data cells that are >=10 and <=12


Cheers
 
Hi ,


Generally , having multiple conditions as criteria is taken care of by multiplying the conditions as follows :


At present , you have one condition (N2:N236>=10).


If you want to have two conditions , use : (N2:N236>=10)*(N2:N236<=12)


You can add more conditions in this manner.


Narayan
 
Back
Top