Complex/Nested IF formulas

drakestar

New Member
Joined
Jan 6, 2015
Messages
2
Hi there,

Im trying to create some formulas so me and my colleagues can work out our bonus. It comes in two parts - Team and Individual accelerators. Now Im able to get the individual accelerators to work to a certain point then all I get is "FALSE" and I can get the Team bonus to only work if we over achieve target (where we get a team accelerator) - this is the most difficult bit of the equation for me. I'm wondering if someone could see where the errors are and tell me how I get it to show the correct ammount:

Individual:
=IF(C2<68,0,IF(C2>=68,50,IF(C2>=74,100, IF(C2>=80,200, IF(C2>=86,500)))))

So if I am under 68 I get nothing, if over 68 then £50 (this works and if I put C2>=68<74 and so on I still get the same issue after this amount).


Team:
=IF(Team!C3=100%,B2,IF(Team!C3>=90%<100%,B2*80%,IF(Team!C3>=80%<90%,B2*60%,IF(Team!C3<80%,0,IF(Team!C3>100%,(((B2*Team!C3)-B2)*2.5)+B2)))))

So this is probably the most complex formula I've done but it works the same way as the individual one but in percentage to target (we are sales). Now the last part of the formula works in this one i.e. if we achieve over 100% of volume we get 100% of our team bonus pot plus 2.5% extra for every 1% above 100 (so 110% of volume means 125% of bonus pot), between 90-100 its 80% of put and between 80-90% its 60% of pot and below that then nothing.

TEAM!C3 is the team % to volume target.

Im not that adept at spreadsheets (well not as much as I used to be since I hardly have to create them now), so If clarification is needed please say so.

If I am completely and utterly wrong, be nice and gentle....
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Please try the following:

=IF(C2<68,0,IF(C2<74,50,IF(C2<80,100,IF(C2<86,200,500))))

=IF(Team!C3>100%,B2+(B2*(Team!C3-100%)*2.5),IF(Team!C3=100%,B2,IF(Team!C3>=90%,B2*80%,IF(Team!C3>=80%,B2*60%,IF(Team!C3<80%,0)))))

Regards
 
Upvote 0

Forum statistics

Threads
1,215,409
Messages
6,124,733
Members
449,185
Latest member
hopkinsr

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