Sorting Rank Results

JTL9161

Well-known Member
Joined
Aug 29, 2012
Messages
567
Office Version
  1. 365
Platform
  1. Windows
I have a table that I determine the rank # with this formula:=SUMPRODUCT((ABS(AF7-0)>ABS(AF$5:AF$19-0))+0)+1

To get this:
Rank #
3JKL7
12GGHHI5
6XYZ6
6AABCC6
6DDEEFF6
3GHI7
3MNO7
1ABC8
1DEF8
6STU6
6
VW6
6
PQR6

<colgroup><col style="width:48pt" width="64"> <col style="mso-width-source:userset;mso-width-alt:1938;width:40pt" width="53"> <col style="mso-width-source:userset;mso-width-alt:512;width:11pt" width="14"> </colgroup><tbody>
</tbody>

What I looking to do is on another spreadsheet in the workbook put these in order by rank.

Rank #
1ABC8
1DEF8
3JKL7
3GHI7
3MNO7
6XYZ6
6AABCC6
6DDEEFF6
6STU6
6VW6
6PQR6
12GGHHI5

<colgroup><col style="width:48pt" width="64"> <col style="mso-width-source:userset;mso-width-alt:1938;width:40pt" width="53"> <col style="mso-width-source:userset;mso-width-alt:512;width:11pt" width="14"> </colgroup><tbody>
</tbody>

Is there a formula that will take the 1st table and put it into rank order like the 2nd table on another spreadsheet?

Thank for you help
James
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
How about


Excel 2013/2016
ABCDEFGH
1
23JKL71ABC8
312GGHHI51DEF8
46XYZ63JKL7
56AABCC63GHI7
66DDEEFF63MNO7
73GHI76XYZ6
83MNO76AABCC6
91ABC86DDEEFF6
101DEF86STU6
116STU66VW6
126VW66PQR6
136PQR612GGHHI5
ADP
Cell Formulas
RangeFormula
F2=SMALL($A$2:$A$13,ROWS($A$1:A1))
G2=IFERROR(INDEX(B$2:B$13,AGGREGATE(15,6,(ROW(B$2:B$13)-ROW(B$2)+1)/($A$2:$A$13=$F2),COUNTIF($F$2:$F2,$F2))),"")
H2=IFERROR(INDEX(C$2:C$13,AGGREGATE(15,6,(ROW(C$2:C$13)-ROW(C$2)+1)/($A$2:$A$13=$F2),COUNTIF($F$2:$F2,$F2))),"")
 
Upvote 0
WOW! Aggregate?! I will give it a try. Thanks.
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,272
Members
449,075
Latest member
staticfluids

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