Scoring Formula

sanket_sk

Board Regular
Joined
Dec 27, 2016
Messages
140
Office Version
  1. 365
Platform
  1. Windows
Hi,


I am looking for two different formulas which will calculate score in B & C column respectively, logic given in below table …
Please help me build the formula …

Formula 1. >1.25 = 0 Increase on each step 0.132% Max 10% at 2

Formula 2. <0.21% = 0 Increase on each step 0.25% Max 5% at .40%

=A1Answer in B1 Increase in each point=C1Answer in D1Increase in each point
<1.250.0000.132%<0.21%00.25%
1.250.132%0.21%0.25%
1.260.263%0.22%0.50%
1.270.395%0.23%0.75%
1.280.526%0.24%1.00%
1.290.658%0.25%1.25%
1.30.789%0.26%1.50%
1.310.921%0.27%1.75%
1.321.053%0.28%2.00%
1.331.184%0.29%2.25%
1.341.316%0.30%2.50%
1.351.447%0.31%2.75%
1.361.579%0.32%3.00%
1.371.711%0.33%3.25%
1.381.842%0.34%3.50%
1.391.974%0.35%3.75%
1.42.105%0.36%4.00%
1.412.237%0.37%4.25%
1.422.368%0.38%4.50%
1.432.500%0.39%4.75%
1.442.632%0.40%5.00%
1.452.763%>0.4%5.00%
1.462.895%
1.473.026%
1.483.158%
1.493.289%
1.53.421%
1.513.553%
1.523.684%
1.533.816%
1.543.947%
1.554.079%
1.564.211%
1.574.342%
1.584.474%
1.594.605%
1.64.737%
1.614.868%
1.625.000%
1.635.132%
1.645.263%
1.655.395%
1.665.526%
1.675.658%
1.685.789%
1.695.921%
1.76.053%
1.716.184%
1.726.316%
1.736.447%
1.746.579%
1.756.711%
1.766.842%
1.776.974%
1.787.105%
1.797.237%
1.87.368%
1.817.500%
1.827.632%
1.837.763%
1.847.895%
1.858.026%
1.868.158%
1.878.289%
1.888.421%
1.898.553%
1.98.684%
1.918.816%
1.928.947%
1.939.079%
1.949.211%
1.959.342%
1.969.474%
1.979.605%
1.989.737%
1.999.868%
2.0010.000%
>2.0010.000%

<tbody>
</tbody>


Sanket
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hey try these:

B1:
Code:
IF(A1<1.25,0,MIN(10%,(A1-1.24)*0.132))

D1:
Code:
IF(C1<0.21,0,MIN(5%,(C1-0.2)*0.25))

Format Columns B & D as percentages.
 
Last edited:
Upvote 0
Thanks Tyija1995 for quick response !!!

The formula is working perfectly, only one small doubt what is we want to calculate 2nd formula in reverse ( given below logic ), please help me in understanding ..



=C1Answer in D1Dif in each point
<0.21%5.00%0.25%
0.21%5.00%
0.22%4.75%
0.23%4.50%
0.24%4.25%
0.25%4.00%
0.26%3.75%
0.27%3.50%
0.28%3.25%
0.29%3.00%
0.30%2.75%
0.31%2.50%
0.32%2.25%
0.33%2.00%
0.34%1.75%
0.35%1.50%
0.36%1.25%
0.37%1.00%
0.38%0.75%
0.39%0.50%
0.40%0.25%
>0.4%0

<colgroup><col width="177" span="3" style="width:133pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
Hi, for the reverse formula give this a go:

Code:
IF(C1<=0.21,5%,MAX(0,5%-(C1-0.21)*0.25))

This says to give 5% if cell is less or equal to 0.21 otherwise return the max of 0 against 5% less the difference of the cell next to the boundary value multiplied by the step size of 0.25
 
Upvote 0
Hi,

I tried reverse calculation formula, but it is returning 5% in all scenarios ..

I tried with following figures ..

Score Expected Result Actual result
0.23%4.50%5%
0.24%4.25%5%
0.25%4.00%5%
0.26%3.75%5%
0.27%3.50%5%
0.28%3.25%5%
0.29%3.00%5%
0.30%2.75%5%

<colgroup><col><col span="2"></colgroup><tbody>
</tbody>
 
Upvote 0
Hey, that looks like its because formula picks up 0.21 and not 0.21%,

Try this revised formula instead:

Code:
IF(C1<=0.21%,5%,MAX(0,5%-(C1-0.21%)*25))
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

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