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

matchmax formula

Afarag

Member
Dears,

i want to know using match&max formula

EX:

Ahmed-------44

Islam-------78

Hosam-------20

Osama------100

I want to get the name who achieve the maximum value

and i want to get the top second name who achieve the high value
 
Max:

Code:
=INDEX(A1:A4,MATCH(MAX(B1:B4),B1:B4,0))


2nd largest:

=INDEX(A1:A4,MATCH(LARGE(B1:B4,2),B1:B4,0))
 
Back
Top