Trying to locate Top 3 values, then display text from adjacent columns

DraygoB

New Member
Joined
Jan 21, 2019
Messages
2
Assuming the data below starts in column A. I'm trying to write a formula in rows 1-3 that will look in Column D, find the top 3 in rank, then provide the adjacent from in columns A,B,C,E, and F. Help?




Tiger WoodsGolf10BirdieEagle
MichaelJordanBasketball15DunkJumper
BabeRuthBaseball12HomerDouble
WayneGretzkyHockey11GoalAssist

<colgroup><col width="64" span="6" style="width:48pt"> </colgroup><tbody>
</tbody>
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hi, welcome to the board.

Assuming there are no duplicate entries in column D . . .

You can use the LARGE function to identify the largest value, second largest, and so on.
For example
=LARGE(D1:D4,1)
=LARGE(D1:D4,2)

and so on.

Let's assume you put the first example of the above formula in cell G1.

You can then use a combination of INDEX and MATCH to return the corresponding data for the largest entry, and so on.
Like this for column A . . .
=INDEX(A1:A4,MATCH(G1,D1:D4,0))
Adapt this for the other columns as appropriate.
 
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,604
Members
449,109
Latest member
Sebas8956

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