Unique Ranking

loss1003

Board Regular
Joined
Jul 2, 2008
Messages
100
I'm trying to Rank a list and than re-rank the list while excluding certain (or by Criteria) items

Vendor CoCost FeeRank
Vertox5004
BV15203
A&S30572
ISA50001
GCC2505
GSI1476
Excluded Vendors
ISA
A&S
Vendor CoCost FeeRank
BV15201
Vertox5002
GCC2503
GSI1474

<colgroup><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
assuming vendor is in A1.

Code:
=RANK(B2,$B$2:$B$7)


Thanks, but looking for alittle more. I need to know how to rank by excluding whatever vendors are listed under the excluded vendors.

So if BV was also listed under excluded vendors it would be ommited from the final ranking list
. and the revised list would look like (below)
Vendor CoCost FeeRank
Vertox5001
GCC2502
GSI1473

<TBODY>
</TBODY>
 
Upvote 0
maybe something like this assuming your exceptions are in e3:e4

=SUMPRODUCT(--(ISNA(MATCH($A$3:$A$8,$E$3:$E$4,0))),--(B3<$B$3:$B$8))+1
 
Upvote 0
Vendor CoCost FeeRank Vendor CoCost FeeRank
Vertox5004 Vertox5002
BV15203 BV15201
A&S30572 GCC2503
ISA50001 GSI1474
GCC2505
GSI1476
Excluded Vendors
ISA
A&S

<COLGROUP><COL style="WIDTH: 144pt; mso-width-source: userset; mso-width-alt: 6826" width=192><COL style="WIDTH: 48pt" span=2 width=64><COL style="WIDTH: 25pt; mso-width-source: userset; mso-width-alt: 1166" span=2 width=33><COL style="WIDTH: 82pt; mso-width-source: userset; mso-width-alt: 3868" width=109><COL style="WIDTH: 76pt; mso-width-source: userset; mso-width-alt: 3612" width=102><COL style="WIDTH: 48pt" width=64><TBODY>
</TBODY>

F2, control+shift+enter, not just enter, and copy down:
Rich (BB code):
=IFERROR(INDEX($A$2:$A$7,SMALL(IF(1-ISNUMBER(MATCH($A$2:$A$7,$A$10:$A$11,0)),
  ROW($A$2:$A$7)-ROW($A$2)+1),ROWS(F$2:F2))),"")

G2, just enter and copy down:
Rich (BB code):
=IF($F2="","",VLOOKUP($F2,$A$2:$B$7,2,0))

H2, just enter and copy down:
Rich (BB code):
=RANK($G2,$G$2:$G$5)+COUNTIF($G$2:G2,G2)-1
 
Upvote 0

Forum statistics

Threads
1,214,391
Messages
6,119,249
Members
448,879
Latest member
oksanana

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