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

1st 2nd and 3rd place

emmatm

Member
Hi,

I have an excel table which displays a name in column B and a score in column L. I then have a cell in L29 where I want to display the name of the person with the highest score and cell L30 the name of the person in 2nd place and then finally cell L31 showing the person in 3rd place.

Thanks
 
one possible ...
formula for L29

=LOOKUP(LARGE(L$1:L$28;1);L$1:L$28;B$1:B$28) & " " & LARGE(L$1:L$28;1)
change red values as rank for cells L30 & L31
 
Thanks - I have just checked this formula if there are 2 people with the exact same score
one possible ...
formula for L29

=LOOKUP(LARGE(L$1:L$28;1);L$1:L$28;B$1:B$28) & " " & LARGE(L$1:L$28;1)
change red values as rank for cells L30 & L31

I am getting an error on this - could you check please?
 
Hi ,

Try replacing the semi-colon by a comma , since these are separators which vary according to the language version of Excel.

Narayan
 
Thanks - I have just checked this formula if there are 2 people with the exact same score


I am getting an error on this - could you check please?

This is combining the name and the value together from cells B & L - I only want the name from column B to be shown
 
Hmm.. You wrote:
I then have a cell in L29 where I want to display the name of the person with the highest score...and now You want something else ...
You have to take this part & " " & LARGE(L$1:L$28;1) away
 
Hmm.. You wrote:
I then have a cell in L29 where I want to display the name of the person with the highest score...and now You want something else ...
You have to take this part & " " & LARGE(L$1:L$28;1) away
Ah I see - I meant I wanted the name of the person to show who had the highest score not with the highest score! sorry for the confusion.
 
One more try ...
You wanted the name of the person to show who had
the highest score to cell L29,
2nd highest name to L30 and
3rd highest scores to L31.
=> Press the [Button]
 

Attachments

Back
Top