Commission Calculator based on total Amount of Sales

IanShockey

New Member
Joined
Jun 16, 2021
Messages
17
Office Version
  1. 365
Platform
  1. Windows
I need help with creating a formula for this commission structure.

IMG_20210617_065327.jpg


The Initial formula I came up with is this.
=IF(K7>$K$4,(K7-K4)*$K$5,0)

I also need the calculation for anything above 100000 combined with this initial formula that I created so that if the amount exceeds 100000 it would not follow the 7% as it only applies to $40000-$99999
Anything above that will be at 9%.

Please help me solve this. ?
 
Commissions 2021.xlsm
JKL
1
2
3
4Target40,000.00100,000.00
5Rate7%9%
6
7Total amount of Deals141,000.00
8Monthly Commision7,890.00
9
1e
Cell Formulas
RangeFormula
K8K8=(K7>K4)*(K7-40000)*K5+(K7>L4)*(K7-L4)*(L5-K5)
 
Upvote 0
Solution

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
If you have more tiers or if you wish to use Excel's SumProduct instead of arithmetic, you can try the following.
The array of Bracket information is named aB and the array of Rate differentials is named aR.

The Table is not required.
The formula can use the ranges of information but then the table is required.

Commissions 2021.xlsm
DEFG
1Total sales141,000.00
2Commission7,890.00
3Commission Arithmetic7,890.00
4
5
6BracketsRates
700.0%0.00
840,0007.0%4,200.00
9100,0009.0%3,690.00
10
1e
Cell Formulas
RangeFormula
E2E2=SUMPRODUCT(--(E1>aB),E1-aB,aR)
E3E3=SUM(G7:G9)
G7:G9G7=MAX(0,MIN($E$1,D8)-D7)*E7
 
Upvote 0

Forum statistics

Threads
1,215,461
Messages
6,124,954
Members
449,198
Latest member
MhammadishaqKhan

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