Bonus based on percent achieved

ceytl

Board Regular
Joined
Jun 6, 2009
Messages
114
Office Version
  1. 2016
Platform
  1. Windows
I have searched all over and can't find the right formula.

I need to calculate a bonus based on the percent earned.

Below 95%: No Bonus
95%: 500
96%: 700
97%: 900
98%: 1,100
99%: 1,300
100%: 1,500

For every 1% over 100% gets a $100 (1% = $100)
example 101% gets 1,600, 102% gets $1,700
There is no cap on the 1%

Any help would be much appreciated.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
assuming your precentage score is in A1 and the bonus is in B1

you could use the following formula.

=IF(A1<0.95,0,IF(A1<0.96,500,IF(A1<0.97,700,IF(A1<0.98,900,IF(A1<0.99,1100,IF(A1<1,1300,IF(A1=1,1500,(((A1-1)*100)*100)+1500)))))))
 
Upvote 0
Hi.

Say cell A1 is percentage but represented without the % or in other words formatted as number;

Place the code in cell B1

=(A1-100)*100+1500

Hope it's a start.

Regards,
Albert
 
Upvote 0
assuming your percentage score is in A1 and the bonus is in B1

you could use the following formula.

=IF(A1<0.95,0,IF(A1<0.96,500,IF(A1<0.97,700,IF(A1<0.98,900,IF(A1<0.99,1100,IF(A1<1,1300,IF(A1=1,1500,(((A1-1)*100)*100)+1500)))))))

How would I round up or down on the 1% part?

Right now if it's 101.5% it shows $1,650, but I want it to round to $1,700

Thanks for your help so far!
 
Upvote 0
try adjusting the formula to:
=IF(A1<0.95,0,IF(A1<0.96,500,IF(A1<0.97,700,IF(A1<0.98,900,IF(A1<0.99,1100,IF(A1<1,1300,IF(A1=1,1500,((ROUNDUP((A1-1),2)*100)*100)+1500)))))))
 
Upvote 0

Forum statistics

Threads
1,215,455
Messages
6,124,935
Members
449,195
Latest member
Stevenciu

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