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

List of 3 Criteria

Tech56

Member
Hello,

Is there a formula that can list all names that match 3 criteria? The Value must be at least the number in cell H2.

Thank you
 

Attachments

  • Skills.xlsx
    13.3 KB · Views: 9
Try this one in G5 with Ctrl+Shift+Enter and copy it down.
=IFERROR(INDEX($A$2:$A$12,SMALL(IF(($C$2:$C$12=$G$2)*($D$2:$D$12=$H$2)*($E$2:$E$12=$I$2),ROW($E$2:$E$12)-1),ROWS($G$5:G5))),"")

and in H5 with Ctrl+Shift+Enter
=IFERROR(INDEX($D$2:$D$12,SMALL(IF(($C$2:$C$12=$G$2)*($D$2:$D$12=$H$2)*($E$2:$E$12=$I$2),ROW($E$2:$E$12)-1),ROWS($G$5:G5))),"")
 
Thanks but I am not getting any results for my search. This should include all those with at least the skill value of the search criteria. So if I select 3 it should include 3, 4, and 5 values.
 

Attachments

  • Skills Rev 1.xlsx
    14 KB · Views: 5
How about
=IFERROR(INDEX($A$2:$A$12,SMALL(IF(($C$2:$C$12=$G$2)*($D$2:$D$12>=$H$2)*($E$2:$E$12=$I$2),ROW($E$2:$E$12)-1),ROWS($G$5:G5))),"")
 
Or if you have the new dynamic arrays
=FILTER(Table18[Name],(Table18[Skills]=G2)*(Table18[Value]>=H2)*(Table18[Certification]=I2))
 
Back
Top