Return corresponding names in descending order based on next column values.

alirezae90

New Member
Joined
Jan 20, 2019
Messages
8
Hi everyone,

Column A1:A5 contains unique names/references
Column B1:B5 contains numbers

I want column C1:C5 to be those names but based on their corresponding values in descending order.

I don't want to do any filtering, a function on C1 to read values from B1:B5 and return corresponding names in descending order.

Any help is appreciated.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Welcome to Mr Excel,

Try

=INDEX($A$1:$A$5,MATCH(ROW(A1),$B$1:$B$5,0))

Code:
[TABLE="width: 261"]
<colgroup><col width="87" span="3" style="width: 65pt;"></colgroup><tbody>[TR]
[TD="width: 87"]fred[/TD]
[TD="width: 87, align: right"]4[/TD]
[TD="width: 87"]dave[/TD]
[/TR]
[TR]
[TD]dave[/TD]
[TD="align: right"]1[/TD]
[TD]pete[/TD]
[/TR]
[TR]
[TD]jon[/TD]
[TD="align: right"]5[/TD]
[TD]dan[/TD]
[/TR]
[TR]
[TD]pete[/TD]
[TD="align: right"]2[/TD]
[TD]fred[/TD]
[/TR]
[TR]
[TD]dan[/TD]
[TD="align: right"]3[/TD]
[TD]jon[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Welcome to Mr Excel,

Try

=INDEX($A$1:$A$5,MATCH(ROW(A1),$B$1:$B$5,0))

Code:
[TABLE="width: 261"]
<tbody>[TR]
[TD="width: 87"]fred[/TD]
[TD="width: 87, align: right"]4[/TD]
[TD="width: 87"]dave[/TD]
[/TR]
[TR]
[TD]dave[/TD]
[TD="align: right"]1[/TD]
[TD]pete[/TD]
[/TR]
[TR]
[TD]jon[/TD]
[TD="align: right"]5[/TD]
[TD]dan[/TD]
[/TR]
[TR]
[TD]pete[/TD]
[TD="align: right"]2[/TD]
[TD]fred[/TD]
[/TR]
[TR]
[TD]dan[/TD]
[TD="align: right"]3[/TD]
[TD]jon[/TD]
[/TR]
</tbody>[/TABLE]

Thanks.

In you example I want Jon to come first (descending order) and also this function did not work when I tried it.
 
Upvote 0
Misread the question!

Try

=INDEX($A$1:$A$5,MATCH(LARGE($B$1:$B$5,ROW(A1)),$B$1:$B$5,0))

Code:
[TABLE="width: 261"]
<colgroup><col width="87" span="3" style="width: 65pt;"></colgroup><tbody>[TR]
[TD="width: 87"]fred[/TD]
[TD="width: 87, align: right"]47[/TD]
[TD="width: 87"]jon[/TD]
[/TR]
[TR]
[TD]dave[/TD]
[TD="align: right"]11[/TD]
[TD]fred[/TD]
[/TR]
[TR]
[TD]jon[/TD]
[TD="align: right"]58[/TD]
[TD]dan[/TD]
[/TR]
[TR]
[TD]pete[/TD]
[TD="align: right"]21[/TD]
[TD]pete[/TD]
[/TR]
[TR]
[TD]dan[/TD]
[TD="align: right"]37[/TD]
[TD]dave[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Misread the question!

Try

=INDEX($A$1:$A$5,MATCH(LARGE($B$1:$B$5,ROW(A1)),$B$1:$B$5,0))

Code:
[TABLE="width: 261"]
<tbody>[TR]
[TD="width: 87"]fred[/TD]
[TD="width: 87, align: right"]47[/TD]
[TD="width: 87"]jon[/TD]
[/TR]
[TR]
[TD]dave[/TD]
[TD="align: right"]11[/TD]
[TD]fred[/TD]
[/TR]
[TR]
[TD]jon[/TD]
[TD="align: right"]58[/TD]
[TD]dan[/TD]
[/TR]
[TR]
[TD]pete[/TD]
[TD="align: right"]21[/TD]
[TD]pete[/TD]
[/TR]
[TR]
[TD]dan[/TD]
[TD="align: right"]37[/TD]
[TD]dave[/TD]
[/TR]
</tbody>[/TABLE]

Thanks again.

The issue here is that my actual cells don't start from A1 or B1 they start from A4 etc....modifying the function to =INDEX($H$5:$H$9,MATCH(LARGE($I$5:$I$9,ROW(H5)),$I$5:$I$9,0)) returns #NUM !

Any ideas as to why?
 
Upvote 0

Book1
ABC
1jon2jack
2nadia6nadia
3jack8linda
4vino5vino
5linda6jon
Sheet1


In C1 control+shift+enter, not just enter, and copy down:

=IF(ROWS($C$1:C1)<=COUNTIFS($A$1:$A$5,"?*"),INDEX($A$1:$A$5,SMALL(IF($B$1:$B$5=LARGE($B$1:$B$5,ROWS($C$1:C1)),ROW($B$1:$B$5)-ROW($B$1)+1),SUM(IF(LARGE($B$1:$B$5,ROW($B$1:B1)-ROW($B$1)+1)=LARGE($B$1:$B$5,ROWS($C$1:C1)),1)))),"")
 
Upvote 0
Thanks for that.

But do you know how I could use the function in this link:
HTML:
https://www.get-digital-help.com/2013/12/13/lookup-and-return-multiple-values-sorted-in-a-custom-order/
to do an descending rather than ascending? As I also have one criterion too.

=INDEX($D$3:$D$14, MATCH(SMALL(IF($G$2=$B$3:$B$14, $C$3:$C$14, ""), ROW(A1)), IF($G$2=$B$3:$B$14, $C$3:$C$14, ""),0))
 
Upvote 0
Thanks again.

The issue here is that my actual cells don't start from A1 or B1 they start from A4 etc....modifying the function to =INDEX($H$5:$H$9,MATCH(LARGE($I$5:$I$9,ROW(H5)),$I$5:$I$9,0)) returns #NUM !

Any ideas as to why?

Try

=INDEX($H$5:$H$9,MATCH(LARGE($I$5:$I$9,ROW(A1)),$I$5:$I$9,0))

Row(A1) tells it to return the 1st largest thins copied down, 2nd 3rd etc
 
Upvote 0
ABC
1jon2jack
2nadia6nadia
3jack8linda
4vino5vino
5linda6jon

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

In C1 control+shift+enter, not just enter, and copy down:

=IF(ROWS($C$1:C1)<=COUNTIFS($A$1:$A$5,"?*"),INDEX($A$1:$A$5,SMALL(IF($B$1:$B$5=LARGE($B$1:$B$5,ROWS($C$1:C1)),ROW($B$1:$B$5)-ROW($B$1)+1),SUM(IF(LARGE($B$1:$B$5,ROW($B$1:B1)-ROW($B$1)+1)=LARGE($B$1:$B$5,ROWS($C$1:C1)),1)))),"")

This appears to do the same as my suggestion, what am I missing?
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

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