Formula to work out commission structure

ronie85

Board Regular
Joined
Jan 25, 2014
Messages
89
Office Version
  1. 365
Platform
  1. Windows
Hi, I require a formula to work out a sales commission structure as a lot of online templates seem to be different structures.

In a nutshell, when looking at the picture, I will require 5 of the same formulas which I can replicate which need to go into the cells in yellow in G2, G3, G4, G5 & G6.
For this basis I will just need the formula for G2 and I can amend it.

The formula will need to take the source value within A2 each time. It will need to tell me the amount of that formula that falls between the lower value C2, and higher value D2. In this case £200,000.00. The same formula then needs to return the percentage of this overall value as shown in E2. As it is 0% it returns £0.
However as you can see within G3 it has returned £1,875.00 which is 1.25% of £149,999.99 (the value below £400,000 and above £250,000.01)

For reference, all values shown within the yellow cells I have inputted myself until I get the formula.

Thanks in advance.
 

Attachments

  • Formula to work out commission structure.png
    Formula to work out commission structure.png
    10.7 KB · Views: 15

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Try:
Book1
ABCDEF
1SalesMinMaxRateCommission
2900,000.000.00250,000.000.00%0
3250,000.01400,000.001.25%1,875.00
4400,000.01575,000.001.55%2,712.50
5575,000.01800,000.001.75%3,937.50
6800,000.019,999,999.002.00%2,000.00
7
810,525.00
9
Sheet1
Cell Formulas
RangeFormula
F2F2=MAX(0,MIN(D2,$A$2)*E2)
F3:F6F3=MAX(0,MIN(D3-D2,$A$2-D2)*E3)
F8F8=SUM(F2:F6)
 
Upvote 0
Consider:

Book1
ABCDEFGH
1Sales to DateTier MinimumTier MaximumPayout RateDeltaCommission
29000000.00250000.000.00%0.00%0
3250000.01400000.001.25%1.25%1875
4400000.01575000.001.55%0.30%2712.5
5575000.01800000.001.75%0.20%3937.5
6800000.019999999.002.00%0.25%2000
7
81052510525
Sheet3
Cell Formulas
RangeFormula
F2:F6F2=E2-N(E1)
G2:G6G2=MEDIAN(0,D2-C2,A$2-C2)*E2
G8G8=SUM(G2:G6)
H8H8=SUMPRODUCT((A2-C2:C6),F2:F6,--(A2>=C2:C6))


The formulas in column G are essentially the same as what AhoyNC provided. An alternative is to add the formulas in column F. They are just the differences in rates between the tiers. Then you can use the single cell formula in H8 to get your result.
 
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