If formula based on score

sanket_sk

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

I just want to create simple formula where excel should return value based on increasing / decreasing trend..

Details ..

We have highest and lowest score board where lowest value is better ( Payment due in months =<1.5 months is better than =>2.5 Months).

Here we want to give 15% additional discount if payment is made =<1.5 months, and it will reduce 1.5% on each increase intervention ( Table Below)

Please help me in creating this formula


MonthsScore
<=1.515%
1.613.50%
1.712%
1.810.50%
1.99%
27.50%
2.16%
2.24.50%
2.33%
2.41.50%
>=2.50%

<tbody>
</tbody>
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Assuming that your months are always exactly equal to one decimal place, then for any value in cell A1, use this formula:
Code:
=MIN(MAX(0.15-(A1-1.5)*0.15,0),0.15)
 
Upvote 0
Assuming that your months are always exactly equal to one decimal place, then for any value in cell A1, use this formula:
Code:
=MIN(MAX(0.15-(A1-1.5)*0.15,0),0.15)


Thanks for Quick reply Joe, this formula worked for me..

Also please suggest for below equation, where Higher is better.

Payment Collection
Score
<=70%
0%
71%
1%
72%
2%
73%
3%
74%
4%
75%
5%
76%
6%
77%
7%
78%
8%
79%
9%
80%
10%
81%
11%
82%
12%
83%
13%
84%
14%
>=85%
15%

<tbody>
</tbody>

Sanket
 
Upvote 0
That one is even easier, as it is a straight 1% increase on both sides:
Code:
=MIN(MAX(A1-0.7,0),0.15)

I hope you are starting to see the pattern here, and it makes sense (where you should be able to figure other ones out now).
If not, let me know what questions you have about the formula.
 
Upvote 0

Forum statistics

Threads
1,214,927
Messages
6,122,311
Members
449,080
Latest member
jmsotelo

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