D Dino May 16, 2009 #1 I need a formula to display the name of the person associated with having the highest percentage in a competition.
I need a formula to display the name of the person associated with having the highest percentage in a competition.
S Sheeloo May 17, 2009 #2 If name is in A1 and percentage in B1 then in C1 use something like ="A1" & " has the highest percentage which is " & B1
If name is in A1 and percentage in B1 then in C1 use something like ="A1" & " has the highest percentage which is " & B1
T T. Valko May 17, 2009 #3 ...........A..........B 1.......Jill.........30 2.......Tom......27 3.......Bill........99 4.......Sue.......86 5.......Lisa......44 =INDEX(A1:A5,MATCH(MAX(B1:B5),B1:B5,0)) Result = Bill
...........A..........B 1.......Jill.........30 2.......Tom......27 3.......Bill........99 4.......Sue.......86 5.......Lisa......44 =INDEX(A1:A5,MATCH(MAX(B1:B5),B1:B5,0)) Result = Bill
D Dino May 17, 2009 #4 Thanks, that was perfect. I appreciate it. T. Valko said: ...........A..........B 1.......Jill.........30 2.......Tom......27 3.......Bill........99 4.......Sue.......86 5.......Lisa......44 =INDEX(A1:A5,MATCH(MAX(B1:B5),B1:B5,0)) Result = Bill Click to expand...
Thanks, that was perfect. I appreciate it. T. Valko said: ...........A..........B 1.......Jill.........30 2.......Tom......27 3.......Bill........99 4.......Sue.......86 5.......Lisa......44 =INDEX(A1:A5,MATCH(MAX(B1:B5),B1:B5,0)) Result = Bill Click to expand...