Cumulative Tier Commission Formula on excel

juliojohk

New Member
Joined
Feb 22, 2017
Messages
3
Good Evening,
Was hoping someone could please help me.

I am trying to create a formula to calculate the commission as below

<80,000 = 0%
80,001-130,000 = 30%
130,001 - 295,000 = 35%
295,001 - 495,000 - 40%
> 495,001 = 50%

so based on person making 500,000 total for the quarter, his bonus will be per below
14,999.7+57,749.65+79,999.6 + 2,499.5
total = 155,248.45

can you please help me on what formula to use to get this calculation?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Welcome to the forum.

I have an answer for you.
 
Last edited:
Upvote 0
I think this ought to do it.
ABC
1Quarterly 500000
2
3HurdleRateBonus
4 - 0% -
5 80,001 30% 14,999.70
6 130,001 35% 57,749.65
7 295,001 40% 79,999.60
8 495,001 50% 2,499.50
9Total Bonus: 155,248.45

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet35

Worksheet Formulas
CellFormula
C4=IF($B$1 < A4,0,IF($B$1 > A5,A5-A4-1,$B$1-A4)*B4)
C5=IF($B$1 < A5,0,IF($B$1> A6,A6-A5-1,$B$1-A5)*B5)
C6=IF($B$1 < A6,0,IF($B$1> A7,A7-A6-1,$B$1-A6)*B6)
C7=IF($B$1 < A7,0,IF($B$1> A8,A8-A7-1,$B$1-A7)*B7)
C8=IF($B$1 < A8,0,($B$1-A8)*B8)
C9=SUM(C4:C8)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Excel 2010
BCDE
1500,000.00155,250.00
2
380,000.0130%30%
4130,000.0135%5%
5295,000.0140%5%
6495,000.0150%10%
2c
Cell Formulas
RangeFormula
C1=SUMPRODUCT(--(B1>rB),B1-rB,rDiff)
E3=D3-G2
Named Ranges
NameRefers ToCells
rB='2c'!$C$3:$C$6
rDiff='2c'!$E$3:$E$6


Please review the definition of the Brackets Tiers and edit the range if necessary.
 
Upvote 0
=(b1>80000)*(b1-80000)*e3+(b1>130000)*(b1-130000)*e4+(b1>295000)*(b1-295000)*e5+(b1>495000)*(b1-495000)*e6
 
Upvote 0
Hi,
I calculate $155,250.00 with

=SUMPRODUCT((A1>{80000,130000,295000,495000})*(A1-{80000,130000,295000,495000})*{0.3,0.05,0.05,0.1})
 
Upvote 0

Forum statistics

Threads
1,215,525
Messages
6,125,325
Members
449,218
Latest member
Excel Master

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