• 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.

COUNTIF With multiple criteria

Ellie_86

New Member
I am trying to find the number of claims within a worksheet that meet three critera's.


I have tried to use

=COUNT(IF('RTW Same Employer'!M6:M64,"<=24",IF('RTW Same Employer'!I6:I64,("<=31/03/2011"),IF('RTW Same Employer'!J36:J64,"5"))))


=SUMPRODUCT(--('RTW Same Employer'!M6:M64<="24")--('RTW Same Employer'!I6:I64<="31/03/2011")--('RTW Same Employer'!J36:J64,"5"))))


Any suggestions, corrections or solutions welcome!


Thank you


Ellie
 
Ellie


Firstly, Welcome to the Chandoo.org Forums


Have a look at:

Code:
=SUMPRODUCT(('RTW Same Employer'!M6:M64<=24)*('RTW Same Employer'!I6:I64<="31/03/2011")*('RTW Same Employer'!J36:J64=5))
 
Back
Top