100 points and descending

gsdanger

Board Regular
Joined
Jul 12, 2010
Messages
83
Office Version
  1. 2019
Platform
  1. Windows
Good Day, :confused:
I need your assistance with this minor problem that is doin my head in.
I have a list of numbers (my race ratings).
Example:

86 100
84.5 ?
82 ?
79.5 ?
76 ?
74.5 ?
71 ?

I want to have the top rated figure to be 100, with the remaining ratings proportionally rated.
Naturally, the ratings will change with every use of my program, but I want the highest rated horse to have a rating of 100, and the rest allotted a rating that is proportional to the 100 top rating.
How can I do this? Please assist.

Kind regards.
gsdanger :confused:
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
good day, :confused:
I need your assistance with this minor problem that is doin my head in.
I have a list of numbers (my race ratings).
Example:

86 100
84.5 ?
82 ?
79.5 ?
76 ?
74.5 ?
71 ?

I want to have the top rated figure to be 100, with the remaining ratings proportionally rated.
Naturally, the ratings will change with every use of my program, but i want the highest rated horse to have a rating of 100, and the rest allotted a rating that is proportional to the 100 top rating.
How can i do this? Please assist.

Kind regards.
Gsdanger :confused:


=if($a2=max($a$2:$a$8),100,$a2/max($a$2:$a$8)*100)
 
Upvote 0
A bit tricky without knowing the expected results or exactly what you mean by "proportionally rated". Here are 2 possibilities.
Column B is a simplified version of jarjarbingie's formula which effectively expresses the percentage of each score compared to the maximum score in the range.
Column C spreads the scores between 100 and zero, keeping the relative proportional gaps between them.


Book1
ABC
286100100
384.598.255890
48295.348873.333333
579.592.441956.666667
67688.372133.333333
774.586.627923.333333
87182.55810
Points
Cell Formulas
RangeFormula
B2=100*A2/MAX(A$2:A$8)
C2=100*(A2-MIN(A$2:A$8))/(MAX(A$2:A$8)-MIN(A$2:A$8))
 
Upvote 0
There is a third way to show rating in percentile Manner. Formula for the same is as below

=COUNTIF($A$2:$A$8,"<="&A2)/COUNTA($A$2:$A$8)*100
 
Upvote 0
Good Day all,
Thanks to all that gave me a solution to this problem.
I used jarjarbingle's solution and it worked great....Thanks jarjarbingle, and thanks to Peter_SSs and Swapnil Shah.

Kind Regards.
gsdanger
 
Upvote 0
You are welcome, and of course you can use whatever you like but just pointing out again that the considerably simpler formula in cell B2 of my post should produce exactly the same results.
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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