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

Criteria match

Hi Rahul,
Good day...

Try this in J3:
=IF(D2>=90%,INDEX($A$2:$D$15,MATCH(D2,$D$2:$D$15,0),1),"")

and this in K3:
=IF(D2<=60%,INDEX($A$2:$D$15,MATCH(D2,$D$2:$D$15,0),1),"")

Copy down both.

Regards,
 
Hi Rahul -

Try this in J3
IFERROR(INDEX($A$2:$A$15,MATCH(SMALL(IF($D$2:$D$15>=90%,ROW(A$1:$A$14),""),ROWS($A$1:A1)),IF($D$2:$D$15>=90%,ROW(A$1:$A$14),""),0)),"")

In K3 - IFERROR(INDEX($A$2:$A$15,MATCH(SMALL(IF($D$2:$D$15<=60%,ROW($A$1:B$14),""),ROWS($A$1:B1)),IF($D$2:$D$15<=60%,ROW($A$1:B$14),""),0)),"")

Drag them down as required..

Note: Please array enter them..
 
one more..

In cell J3:-
=INDEX($A$2:$A$15,SMALL(IF($D$2:$D$15>=90%,ROW($A$2:$A$15)-ROW($A$2)+1),ROW(J1)))

and in cell K3:-
=INDEX($A$2:$A$15,SMALL(IF($D$2:$D$15<=60%,ROW($A$2:$A$15)-ROW($A$2)+1),ROW(K1)))

Enter with Ctrl+Shift and drag down
 
Back
Top