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. ?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
You could use the following formula which is based on my spreadsheet layout.
=MAX(MIN(C7-C3,99999-C3),0)*C4+MAX(C7-D3,0)*D4

1623887193954.png


Kind regards

Saba
 
Upvote 0
You could use the following formula which is based on my spreadsheet layout.
=MAX(MIN(C7-C3,99999-C3),0)*C4+MAX(C7-D3,0)*D4

View attachment 40952

Kind regards

Saba
Hi Saba,

I tried the min and max formula however it does not exclude the 7% on the calculation.
For example :
Total Deals Amount - $141,000
Commission Applied - 9%
Commission will only be applied to the 41,000 so the result should be
$3690.

It's like im trying to set a limit on the commission structure of 7%
That it should only be applied on a specific range which is $40000-$99999
Anything above $99999 the 9% should take effect.
 
Upvote 0
Maybe:
Book1
JKL
4Target$ 40,000.00$ 100,000.00
5Rate7%9%
6
7Total amount of Deals$ 141,000.00
8Monthly Commision$ 3,690.00
Sheet1
Cell Formulas
RangeFormula
K8K8=IF(K7>99999,$L$5*($K$7-100000),IF($K$7>40000,$K$5*K7,0))
 
Upvote 0
Or you could use the following formula in C8

=IF(C7<D3,MAX(MIN(C7-C3,99999-C3),0)*C4,MAX(C7-D3,0)*D4)

1623892750563.png


Kind regards

Saba
 
Upvote 0
Maybe:
Book1
JKL
4Target$ 40,000.00$ 100,000.00
5Rate7%9%
6
7Total amount of Deals$ 141,000.00
8Monthly Commision$ 3,690.00
Sheet1
Cell Formulas
RangeFormula
K8K8=IF(K7>99999,$L$5*($K$7-100000),IF($K$7>40000,$K$5*K7,0))
Hey Ahoy,

We almost got it however when the total changes to something less than 100k
Its the same formula with the 40k
So if for example the total amount is 45000 the 5000 will be the one applied with the 7% Interest.

I tried changing the formula however it's an error when I tried to mimic the formula for 100k.

Thank you for helping.
 
Upvote 0
Hi Ian,

Please see the result for two possibilities and reconciliation below.

View attachment 40957

View attachment 40958

Kind regards

Saba
We are almost there.. ?

The structure would be for $40,000
If the total is $40,000 less it would be 0.
If it would be $47,000 or any amount excess to $40,000 that's where the 7% is applied.
Total :47000
Commission: 7000*0.07

Thanks Saba ??
 
Upvote 0

Forum statistics

Threads
1,215,026
Messages
6,122,743
Members
449,094
Latest member
dsharae57

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