Struggling with a tiered commission structure (monthly & quarterly)

Chris1289

New Member
Joined
Jan 17, 2022
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi all,

Help would be greatly appreciated as I'm an Excel novice. I've recently moved to a new recruitment agency where Excel isn't used fully, with commission calculations being done manually. We have a tiered commission structure monthly and quarterly, so I'm trying to create a spreadsheet to keep an eye on my figures etc.

Monthly
Tier MinimumTier MaximumCommission Rate
€0€4,0000%
€4,000€17,00010%
€17,00020%

Quarterly
Tier MinimumTier MaximumCommission Rate
€0€40,0000%
€40,000€57,00010%
€57,00015%

To clarify the above table, if I invoiced €30,000 in a month:
  • I wouldn't earn any commission on the first €4,000 (€0)
  • Then 10% on any billing between €4,000 and €17,000 (€1,300)
  • Then 20% on anything above €17,000 (€2,600)
  • Total commission for that month would be €3,900

At my previous company, I already had access to a formula that helped me calculate monthly commission on their tiered commission structure, which I am trying to emulate, however I can't seem to get to work - this was the previous formula (taken from a random month, so D7 refers to the total value of sales invoiced that month): =IF(D7<=10000,10%*D7,IF(D7<=18000,10000*10%+20%*(D7-10000),IF(D7<=25000,10000*10%+8000*20%+30%*(D7-18000),10000*10%+8000*20%+7000*30%+35%*(D7-25000))))

How can I emulate the above formula for my new Monthly and Quarterly commission structures? Would sticking with an IF formula be better than VLOOKUP?

Many thanks,

Chris
 
Commission2022.xlsm
ABCD
1Total sales30,000.00
2Commission3,900.003,900.00
3
4
5BracketsRates --- Arithmetic ---
6cell b7 is blankBy BracketCumulative
700%0.000.00
84,00010%1,300.001,300.00
917,00020%2,600.003,900.00
10
1b
Cell Formulas
RangeFormula
B2B2=SUMPRODUCT(--(B1>A7:A9),B1-A7:A9,B7:B9-B6:B8)
C2C2=SUMPRODUCT(--(B1>aB),B1-aB,aR)
C7:C9C7=MAX(0,MIN($B$1,A8)-A7)*B7
D7:D9D7=MAX(0,MIN($B$1,A8)-A7)*B7+N(D6)


The formula in C2 uses named arrays. The array of Brackets data and the array of Rate Differentials are named.
See Formulas Name Manger
- The array of Bracket data is named aB Refers to =={0;4000;17000}
- The array of Rate Differentials is named aR Refers to ={0;0.1;0.1}
Advantages
The formula is easier to read.
The table is not required if the formula C2 is used.
N.B.
The names are not necessary; it is a personal preference.
The names can be assigned to be applicable to the sheet or to the workbook.
Determine the numbers by looking at the tier specifications or by reviewing the ranges.
For example with the formula in B2, select B7:B9-B6:B8 and press F9.
 
Upvote 0

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the forum.
The formula uses named information (see post 11) for the Bracket data and the Rate Differentials data.
Use Formulas Name Manager to add the names and respective data.
The double negative -- coerces the True or False to 1 or 0 for the formula.
The data below presents the results for the Quarters.

Commission2022.xlsm
ABC
12Total sales - Quarter200,000.0023,150.00
13Total sales - Quarter100,000.008,150.00
14Total sales - Quarter50,000.001,000.00
15
1bb
Cell Formulas
RangeFormula
C12:C14C12=SUMPRODUCT(--(B12>aBQ),B12-aBQ,aRQ)
 
Upvote 0

Forum statistics

Threads
1,215,757
Messages
6,126,695
Members
449,331
Latest member
smckenzie2016

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