Increase amount based on percentage formula?

kitteyrin

New Member
Joined
Feb 20, 2016
Messages
4
So I have a formula I'm trying to build to track my bonus at work. Right now, the formula looks like this:

=IF((C4/B4)>=90%,
IF(G4<4.99%,500,
IF(AND(G4>=5%,G4<=5.99%),450,
IF(AND(G4>=6%,G4<=6.99%),300,
IF(AND(G4>=7%,G4<=7.99%),250,
IF(AND(G4>=8%,G4<=8.99%),100,0)
)
)
)
),0)

So essentially my formula looks at the error rate I have, checks whether or not I've made at least 90% of my goal, and returns a bonus amount based on that criteria. However, my bonus structure allows that for every 5% above 100% I receive, I get an extra 50. I'm wondering what I would have to do to modify my current formula (above) so that, if my percentage to goal is 105% at an error rate of less than 5%, it returns 600, 110% at a rage of 7.59% returns 450, and 135% at an error rate of 6.99% returns 1000.

Thank you!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi kitteyrin,

I believe I've arrived at a working solution for your problem. However, you will have to add a lookup table, as I'm using a VLOOKUP formula to solve this problem.

In my solution, I added the following lookup table to J1:K7 (headers included).

=IF(AND(C4/B4>=90%,G4<9%),VLOOKUP(G4,$J$2:$K$7,2)+IF(C4/B4>100%,ROUNDDOWN((C4/B4-1)/0.05,0)*100,0),0)

The data table that the VLOOKUP is referencing is at the bottom of the post.

I've assumed that no bonus will be paid if the % is less than 9%, whether or not the completion percentage is greater than or equal to 90%. This might be a faulty assumption, but this point was not clarified in the original question.

I've also assumed that the additional 5% of completion over 100% will add 100 to the bonus, as that is what you have shown in the examples listed in your first post (although 50 was stated).

Also, this assumes that the additional bonus amount (100) will only be applied in complete increments of 5% over 100% completion. So, a completion rate of 104% will not receive the additional bonus amount of 100.

Below is the data table entered into J1 in my solution, and beneath that is a simulation list of results obtained by the formula.

Hope this helps.

%
Bonus
0
500
5%
450
6%
300
7%
250
8%
100
9%
0

<tbody>
</tbody>


ABCDEFG
Completion BasisCompletion New Bonus Perccentage
10090 500 4.00%
10095 450 5.00%
100100 300 6.00%
100105 350 7.00%
100110 300 8.00%
100115 0 9.00%
10090 500 4.00%
10095 450 5.00%
100100 300 6.00%
100105 350 7.00%
100110 300 8.00%
100115 0 9.00%
10090 500 4.00%
10095 450 5.00%
100100 300 6.00%
100105 350 7.00%
100110 300 8.00%
100115 0 9.00%

<tbody>
</tbody><colgroup><col><col><col><col><col><col><col></colgroup>
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,679
Members
449,463
Latest member
Jojomen56

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