can any one solve this one?

Status
Not open for further replies.

steve daddario

New Member
Joined
Jun 9, 2011
Messages
13
Hey,

Im trying to figure out how I can set up a formula so that when a planned target profit is reached I can add a 10% bonus to that persons salary. For example, in Q1, planned sales were $87500 and Actual was $100000. How could I make a formula to calculate when actual sales are greater than or equal to the planned amount the manager salary recieves a 10% bonus. So if i have Q1 Q2 Q3 Q4 i wanna know how i can make a formula to pay my manager 10% bonus each quater he reaches his target profit.

manage makes 50000 in salary plus 10% bonus each quater if meets TP.

Anyonee???

thanks
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
For example
A2 = Planned Sales
B2 = Actual Sales
C2 = Salary
D2 = Formula (Salary with Bonus)

=C2*(1+IF(B2>A2,0.1,0))

The IF statement checks if the Actual is greater than Planned when True return 0.1 or 10% but when False it returns 0.

Actual > Planned then 50000 *(1+0.1) = 50000*(1.1) = 55000
Actual < Planned then 50000*(1+0) = 50000*(1) = 50000

it could also be written like
=IF(B2>A2,1.1*C2,C2)
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,224,606
Messages
6,179,866
Members
452,948
Latest member
UsmanAli786

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