Need Help with formulas to Help Me work out my Commissions?

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,201
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

OK so I need a formula or formulas to calculate Commissions payable?

We work on a 4 level commission structure and I need to be able to change the rates but lets say for now its

Level1 £0 to £100,000 = 10%
Level2 £100,001 to £200,000 =20%
Level3 £200,001 to £300,000 =30%
Level4 Over £300,000 =40%

These Amounts are IN Range B4:B7 (Amount Up To/above as shown) and %'s In C4:C7

Now heres the problem,

I Need to work out the Commision payable for this Month but The levels are a running total for the year.

So In Cell A1 I have Opening Sales (i.e. The amount of sales I've Made aready this year)
In Cell B2 I Have This Months Sale (I.e The amount I need to get paid Commision on!)
and In C1 Total Sales.

So some how I need to do this

Anywhere in the sheet, show Opening Sales In a matrix To show Where I'm upto
And show the levels of commission I'm reciving this month and why.

So for example using the levels above lets say my Opening sales are £170,000
and this month I sold £210,000.

So Level1 has been reached (up to £100,000) so no Commsions in this cat.
Level2 £100,001 to £200,000 Has £50,000 already reached, so I start here with £50,000 of my sales being at 20%
Level3 £200,001 to £300,000 I have £100,000 at 30%
Level4 Over £300,000 =40% leveing £20,000 at 40%


Any ideas how I can calculate this? I'm totally Lost?

thanks

Tony
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
This is not too difficult, but it really does help if you've seen it before.

Excel 2012
ABCDEFGHI
1170000
2210000
3TierRateOpening salesCurrent Sales
4010%1000001000000
510000020%7000014000300006000
620000030%0010000030000
730000040%008000032000
8
92400068000

<colgroup><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
E4=MIN(A1,B5)
F4=E4*C4
E5=MEDIAN(0,A1-B5,B6-B5)
F5=E5*C5
E6=MEDIAN(0,A1-B6,B7-B6)
F6=E6*C6
E7=MAX(0,A1-B7)
F7=E7*C7
H4=MIN(A1+A2,B5)-E4
I4=H4*C4
H5=MEDIAN(0,A1+A2-B5,B6-B5)-E5
I5=H5*C5
H6=MEDIAN(0,A1+A2-B6,B7-B6)-E6
I6=H6*C6
H7=MAX(0,A1+A2-B7)-E7
I7=H7*C7
F9=SUM(F4:F7)
I9=SUM(I4:I7)

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

<tbody>
</tbody>



The formulas in E and F calculate the bonus for the Opening Sales. The MIN, MEDIAN, and MAX formulas are used to figure out how much of the amount in A1 is to be applied to each range. Then the formulas in F just calculate those amounts by the appropriate rate, and F9 just sums them up.

The formulas in H do basically the same thing, only for the sum of the amounts in A1:A2, and then subtracts out the amount in each tier that has already been used, from column E.

Let me know how this works for you!
 
Upvote 0
Eric,

This is Brilliant :)
Exactly what I needed and works perfectly
Thanks Mate
Tony
 
Upvote 0

Forum statistics

Threads
1,216,070
Messages
6,128,615
Members
449,460
Latest member
jgharbawi

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