Interpolation Question

stanleykobeblue

New Member
Joined
Jan 4, 2005
Messages
25
I am trying to determine a bonus payout percentage using interpolation and would like some help with the formula I should use.

I have a payout percentage scale of:
Less than 1.5% improvement pays out at 0%
1.5% improvement pays out at 20%
2% improvement pays out at 100%
5% improvement pays out at 200% (capped)

Assuming that the 'percentage improvement achieved' is 1.87%, I need to determine the payout percentage using interpolation.

Thanks in advance for any ideas!
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
1.85 falls between the 1.5 and 2% improvement

The difference between 1.5 and 2.0 is 0.5 % this leads to a bonus change of 20% top 100% = 80%

so per 0.01% change (50 steps from 1.50 to 2.00) we have 80% bonus to split up is 80/50 = 1.6 % bonus

so bonus at 1.87 = 20% + 37 * 1.6% = 79.2% bonus

Assuming improvemnt % is in cell A1 then
=if(A1<1.5,0,if(A1<2,20+(2-A1)*1.6*100,if(A1<5,100+(5-A1)*100/3,200)))
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,454
Members
448,898
Latest member
drewmorgan128

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