How to grab data in lowest ranked rows?

plus1hdcp

New Member
Joined
May 18, 2007
Messages
26
I have ranked a subset of data

A B C D

33.15 6 7 6
32.94 3 3 5
32.66 8 8 2
32.56 6 8 1
32.80 6 8 3
32.87 3 5 4


Column D is the ranked value. What I would like to do is use the data in column A, B, and C for additional calculations and place the data in the A column where D = 1 in cell AA1 and where D = 2 in AA2.

How can I do this without VB code?

Thanks
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I suggest you insert the ranking infront column A. Then use the vlookup in column AA to get the results.
 
Upvote 0
Try...

AA1, copied down:

=INDEX($A$1:$A$6,MATCH(ROWS(AA$1:AA1),$D$1:$D$6,0))

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

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