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

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Dylan

Board Regular
Joined
Jul 27, 2007
Messages
150
I suggest you insert the ranking infront column A. Then use the vlookup in column AA to get the results.
 
Upvote 0

Domenic

MrExcel MVP
Joined
Mar 10, 2004
Messages
20,911
Office Version
  1. 365
Platform
  1. Windows
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,191,213
Messages
5,985,300
Members
439,956
Latest member
FrazzledCat

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
Top