Rankings

Fredek

Board Regular
Joined
Mar 8, 2011
Messages
65
Hi guys,

I have Peer Group values e.g. 1,4,8,10.

I would like all non peer groups records to be ranked by the scale above, e.g. 0.5 to have a rank 1, 9 to have a rank 4 etc. Rank 8 can have rank 3/4, for this purpose it's not crucial.

Is there a neat way of doing this?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi Eric,

Thank you very much for your help! How can I do this with an array?

My array contains many numbers that are all over the place, not ascending/descending.

Kind regards,
Fred
 
Last edited:
Upvote 0
It's easy enough to convert that formula to use a range on the sheet:

=MATCH(A1,$Z$1:$Z$5)

where Z1:Z5 = 0,1,4,8,10.

The bigger problem is that they're not ascending/descending. MATCH requires that. Can you sort it? If not, can you post your array? There might be some options.
 
Upvote 0
Hi Eric,

I have 60 odd values in column I. Column J shows the current rank of values in column I.

I would like to be able to see what impact a 10% change to the value would have on it's rating keeping everything else constant.

The below works when the records are sorted manually. Is there a way to do this without the need to sort?

Code:
=Match(I2*1.1,$I$2:$I$62,1)
 
Last edited:
Upvote 0
Maybe:

=SUM(IF(IF(ROW($I$2:$I$62)=ROW(),I2*1.1,$I$2:$I$62)>I2*1.1,1))+1
confirmed with Control+Shift+Enter.
 
Upvote 0

Forum statistics

Threads
1,216,160
Messages
6,129,215
Members
449,494
Latest member
pmantey13

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