Formula required for ascending values

wheels1

New Member
Joined
Nov 28, 2007
Messages
29
I would like to find a formula that produces Names and $values in ascending order. Example :-
Cell a1 =John Cell b1 = $70
a2 = Bill b2 = $100
a3 = Jane b3 = $25
a4 = Frank b4 = $10
a5 = Mary b5 = $60
a6 = George b6 = $30.
ANSWER to be
Frank $10......Lowest price
Jane $25
George $30
Mary $60
John $70
Bill $100.
Thank you & hope this information is satisfactory
 

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 would like to find a formula that produces Names and $values in ascending order. Example :-
Cell a1 =John Cell b1 = $70
a2 = Bill b2 = $100
a3 = Jane b3 = $25
a4 = Frank b4 = $10
a5 = Mary b5 = $60
a6 = George b6 = $30.
ANSWER to be
Frank $10......Lowest price
Jane $25
George $30
Mary $60
John $70
Bill $100.
Thank you & hope this information is satisfactory

Do you expect any duplicates in your range?
So let say Bill and John can have $100
 
Upvote 0
No Robert it is most unlikely

If you have no duplicates values

D2 copy down
=SMALL($B$1:$B$6,ROWS($A$1:A1))
E2:
=INDEX($A$1:$A$6,MATCH(D1,$B$1:$B$6,0))
If you have duplicated values replace the second doemula with this one
=INDEX($A$1:$A$6,SMALL(IF($B$1:$B$6=$D1,ROW($B$1:$B$6)-ROW($A$1)+1),ROWS($A$1:A1)-COUNTIF($D$1:D1,"<>"&D1)))
(this is array formula confrim Control+Shift+Enter
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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