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

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
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,976
Messages
6,122,543
Members
449,089
Latest member
davidcom

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