Need formula that evaluates two criterion to determine bonus qualification

collininspace

New Member
Joined
Dec 16, 2010
Messages
1
Bonus Qualification Formula needed:

I have multiple divisions who can qualify for different bonus levels depending on two factors: how much their revenue grew (%) and profit margin % improvement (in % points, i.e. 3PPs better than last year). I have pasted the 16 different levels below.

For example, if a division had revenue growth of 2.5% and margin improvement of 3.5 percentage points, they qualify for 35% of their bonus target. How can I write a formula that will allow me to quickly analyze these 2 factors to determine their bonus qualification?

Revenue Growth % Margin % Growth
BonusLevel
Min Max Min Max % of Bonus Earned
1 0.000% 2.999% 0.000% 0.999% 0%
2 0.000% 2.999% 1.000% 1.999% 15%
3 0.000% 2.999% 2.000% 2.999% 25%
4 0.000% 2.999% 3.000% 3.999% 35%
5 3.000% 5.990% 0.000% 0.999% 10%
6 3.000% 5.990% 1.000% 1.999% 30%
7 3.000% 5.990% 2.000% 2.999% 50%
8 3.000% 5.990% 3.000% 3.999% 70%
9 6.000% 8.990% 0.000% 1.999% 25%
10 6.000% 8.990% 2.000% 2.999% 100%
11 6.000% 8.990% 3.000% 3.999% 110%
12 6.000% 8.990% 4.000% or more 125%
13 9.000% or more 0.000% 2.249% 40%
14 9.000% or more 2.250% 3.249% 115%
15 9.000% or more 3.250% 4.249% 125%
16 9.000% or more 4.250% or more 150%

I hope to avoid a lot of nested IF statements, and suspect some usage of LOOKUP or arrays might be in order. This is my first post, so I apologize if this is too simple for the knowledge base out there. I appreciate your help!
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
welcome on board

try one of the two options
1- using if and and function
= if(and(firstcondition,secondcondition),true,0)
simply add first condition,second conditon, add your formula for the true, finally false might be zero or any other conditon

2- doing it without if
you assume that you are paying bonus to eveyboy then you add conditions
e.g
revenue* %*(first condition)*(second condition)

hope this will help
 
Upvote 0
Excel Workbook
ABCDEFGHI
1Revenue Growth %Margin Growth %Bonus Level
2
3MinMaxMinMax% of Bonus EarnedExample:
410.00%3.00%0.00%1.00%0%revenue growth of2.50%
520.00%3.00%1.00%2.00%15%margin improvement of3.50%
630.00%3.00%2.00%3.00%25%Bonus35%
740.00%3.00%3.00%4.00%35%
853.00%5.99%0.00%1.00%10%
963.00%5.99%1.00%2.00%30%
1073.00%5.99%2.00%3.00%50%
1183.00%5.99%3.00%4.00%70%
1296.00%8.99%0.00%2.00%25%
13106.00%8.99%2.00%3.00%100%
14116.00%8.99%3.00%4.00%110%
15126.00%8.99%4.00%125%
16139.00%0.00%2.25%40%
17149.00%2.25%3.25%115%
18159.00%3.25%4.25%125%
19169.00%4.25%150%
...
Cell Formulas
RangeFormula
I6=IF(OR(I4="",I5=""),"", INDEX(OFFSET(F4:F7,MATCH(I4,B4:B19,1)-4,0), MATCH(I5,OFFSET(D4:D7,MATCH(I4,B4:B19,1)-4,0))))
 
Upvote 0

Forum statistics

Threads
1,215,456
Messages
6,124,939
Members
449,197
Latest member
k_bs

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