Index a Specific Rank

tcrapo

New Member
Joined
Apr 8, 2014
Messages
19
My Brain isn't working tonight.

I want to find the cell with the corresponding rank.
In the example below, I want to find the third highest ranked score in the range and place it's label in cell D1.
The result in D1 should be EEE.
In D2 I want the 2nd highest score. Result should be DDD
in D3 I want the higest score. Result should be CCC
(Desired Result in Bold)

I want to do this with an index formula with a nested ranking/match formula, but I don't know how to do it.
I'd like to do this without the MAX/MIN formulas.

Windows 7
Excel 2007
Thanks,
-Tony

<!-- Please do not remove this header --><!-- Table easily created from Excel with ASAP Utilities (ASAP Utilities for Excel - The popular add-in for Excel users. Easy to use tools that save time and speed up your work in Excel. We also offer a free edition.) -->
AAA103rdEEE
BBB202ndDDD
CCC601stCCC
DDD50
EEE40
FFF30

<tbody>
</tbody>
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Formula in D1 copied down:


Excel 2010
ABCD
1AAA103EEE
2BBB202DDD
3CCC601CCC
4DDD50
5EEE40
6FFF30
Sheet1
Cell Formulas
RangeFormula
D1=INDEX(A$1:A$6,MATCH(LARGE(B$1:B$6,C1),B$1:B$6,FALSE))
 
Upvote 0
Hi Andrew,

Thanks for the quick reply, but I'm getting #VALUE! Errors.
What am I doing wrong?

<!-- Please do not remove this header --><!-- Table easily created from Excel with ASAP Utilities (ASAP Utilities for Excel - The popular add-in for Excel users. Easy to use tools that save time and speed up your work in Excel. We also offer a free edition.) -->
AAA103rd#VALUE!
BBB202nd#VALUE!
CCC601st#VALUE!
DDD50
EEE40
FFF30

<tbody>
</tbody>


Formula in D1 copied down:

Excel 2010
ABCD
1AAA103EEE
2BBB202DDD
3CCC601CCC
4DDD50
5EEE40
6FFF30

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
D1=INDEX(A$1:A$6,MATCH(LARGE(B$1:B$6,C1),B$1:B$6,FALSE))

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Follow up Question...

How could I manipulate this formula over groups of ranges?
Like in this example below
A2:A7 & A13:A17 (Without including A8:A12)


<!-- Please do not remove this header --><!-- Table easily created from Excel with ASAP Utilities (ASAP Utilities for Excel - The popular add-in for Excel users. Easy to use tools that save time and speed up your work in Excel. We also offer a free edition.) -->
NameScorePlaceName
AAA103EEE
BBB202DDD
CCC601CCC
DDD50
EEE40
FFF30
123456123456
123456123456
123456123456
GGG55
HHH45
III35
JJJ25
KKK15

<tbody>
</tbody>


It's 8:25 AM here in the UK. :)
 
Upvote 0
Like this?


Excel 2010
ABCD
1NameScorePlaceName
2AAA103DDD
3BBB202GGG
4CCC601CCC
5DDD50
6EEE40
7FFF30
8
9123456123456
10123456123456
11123456123456
12
13GGG55
14HHH45
15III35
16JJJ25
17KKK15
Sheet2
Cell Formulas
RangeFormula
D2=INDEX(A$2:A$17,MATCH(LARGE((B$2:B$7,B$13:B$17),C2),B$2:B$17,FALSE))
 
Upvote 0
You're the best!
:)
Thanks,
-Tony


Like this?

Excel 2010
ABCD
1NameScorePlaceName
2AAA103DDD
3BBB202GGG
4CCC601CCC
5DDD50
6EEE40
7FFF30
8
9123456123456
10123456123456
11123456123456
12
13GGG55
14HHH45
15III35
16JJJ25
17KKK15

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet2

Worksheet Formulas
CellFormula
D2=INDEX(A$2:A$17,MATCH(LARGE((B$2:B$7,B$13:B$17),C2),B$2:B$17,FALSE))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,525
Messages
6,120,051
Members
448,940
Latest member
mdusw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top