Incentive Calculation Based on multiple parameter

JMani

New Member
Joined
Nov 28, 2017
Messages
5
Hi,

Need help to find a suitable formula to make the calculation automatic based on the numbers they score for each heading. Please see the sample below. First table is the incentive matrix and the second is a sample score for agents. I need the total payout to be generated based on the bracket they fall in for each parameter and the based on the weightage. Max payout is 5000. The one gets the perfect 10 in all the parameters will be getting the maximum incentive of 5000.

Please let me know if the sample is clear enough to understand and if not, I will once explain.

Thanks in advance for your help and this will help me very much to make the calculations easy and quick.

Weightage15%20%10%15%10%20%10%
ScoresParam#1Param#2Param#3Param#4Param#5Param#6Param#7
5>=95%>=120%>=8 hrs>=95%100%<=5%
4>=90&<95>=10&<121%>=7 & <8>=90&<95>=95%&<100 6% - 6.99%
3>=85&<90>=8&<102%>=6 & <7>=85&<90>=90%&<957% - 7.99%
2>=80%&<85>=6&<83%>=5 & <6>=80%&<85>=85%&<908% - 8.99%
1>=75%&<80%>=5&<64%>=4 & <5>=75%&<80%>=80%&<85%9% - 9.99%
0<75%<55%<4<75%< 80%≥ 10%

<colgroup><col><col><col><col span="2"><col span="2"><col></colgroup><tbody>
</tbody>


Below given is a sample performance numbers for the calculation.

Param#1Param#2Param#3Param#4Param#5Param#6Param#7Total Payout
Agent#189%60%898%90%3%?
Agent#298%40%7.589%87%6%?
Agent#378%151%5.590%67%4%?
Agent#456%103%795%76%2%?

<colgroup><col><col><col><col span="2"><col span="2"><col><col></colgroup><tbody>
</tbody>


Best,
JM
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
A​
B​
C​
D​
E​
F​
G​
H​
I​
1​
Wgt
15%​
20%​
10%​
15%​
10%​
20%​
10%​
2​
Scores
Param#1
Param#2
Param#3
Param#4
Param#5
Param#6
Param#7
Total
3​
0​
0%​
0​
5%​
0​
0%​
0​
10%​
4​
1​
75%​
5​
4%​
4​
75%​
80%​
9%​
5​
2​
80%​
6​
3%​
5​
80%​
85%​
8%​
6​
3​
85%​
8​
2%​
6​
85%​
90%​
7%​
7​
4​
90%​
10​
1%​
7​
90%​
95%​
6%​
8​
5​
95%​
12​
0%​
8​
95%​
100%​
0%​
9​
10​
Agent#1
89%​
6​
0%​
8.0​
98%​
90%​
3%​
3,700
11​
Agent#2
98%​
4​
0%​
7.5​
89%​
87%​
6%​
2,950
12​
Agent#3
78%​
15​
1%​
5.5​
90%​
67%​
4%​
2,750
13​
Agent#4
56%​
10​
3%​
7.0​
95%​
76%​
2%​
2,600
14​
Agent#4
95%​
12​
0%​
8.0​
95%​
100%​
0%​
5,000

The ugly array formula in I10 and copied down is

Code:
=1000*SUMPRODUCT($B$1:$H$1,
CHOOSE({1,2,3,4,5,6,7},
INDEX($A$3:$A$8, MATCH(B10, B$3:B$8)),
INDEX($A$3:$A$8, MATCH(C10, C$3:C$8)),
INDEX($A$3:$A$8, MATCH(TRUE, 1 - D10 <= 1 - D$3:D$8, 0)),
INDEX($A$3:$A$8, MATCH(E10, E$3:E$8)),
INDEX($A$3:$A$8, MATCH(F10, F$3:F$8)),
INDEX($A$3:$A$8, MATCH(G10, G$3:G$8)),
INDEX($A$3:$A$8, MATCH(TRUE, 1 - H10 <= 1 - H$3:H$8, 0))))
 
Upvote 0
Dear shg,

Thank you for the help. I received an error message in the line INDEX($A$3:$A$8, MATCH(TRUE, 1 - D10 <= 1 - D$3:D$8, 0)). Error was from 1-D$3:D$8 section.
Please check and help me.

Thank you,
JM
 
Upvote 0
Paste the formula in the formula bar, press and hold the Control and Shift keys, then press Enter.
 
Upvote 0
Hi shg,

I got it. I had to ctrl+shift+enter. It is working fine. Thank you so much. I will check in detail and if need more help, will let you know. Thank you once again. Great help :))))

JM
 
Upvote 0
Hi, I have a question. Now the maximum payout is kept at 5000. It may go up to 7500 and/or 10000 in future. How can i change the payout calculation? Please clarify.
 
Upvote 0
See that 1000 multiplier at the beginning of the formula?
 
Upvote 0
Hi shg, I faced one error and need you help to rectify it. Even if I remove all values, the payout should be "0". But it shows, "1000". Please check and let me know.

Thank you.
JM
 
Upvote 0
I don't think so:

A​
B​
C​
D​
E​
F​
G​
H​
I​
1​
Wgt
15%​
20%​
10%​
15%​
10%​
20%​
10%​
2​
Scores
Param#1
Param#2
Param#3
Param#4
Param#5
Param#6
Param#7
3​
0​
0%​
0​
5%​
0​
0%​
0%​
10%​
4​
1​
75%​
5​
4%​
4​
75%​
80%​
9%​
5​
2​
80%​
6​
3%​
5​
80%​
85%​
8%​
6​
3​
85%​
8​
2%​
6​
85%​
90%​
7%​
7​
4​
90%​
10​
1%​
7​
90%​
95%​
6%​
8​
5​
95%​
12​
0%​
8​
95%​
100%​
0%​
9​
Total
10​
Agent#1
0%​
0​
5%​
0.0​
0%​
0%​
10%​
0
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,700
Members
448,979
Latest member
DET4492

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