formula for Working out commisions on a sliding scale?

tonywatsonhelp

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

So i have a bit of a problem,
I need to work out an employees commission based on his sales,

we have up to 500 items at 10%
upto 1000 at 15%
over 1000 at 20%

so lets say in A7 is the number of sales 2000 for example, and in C7 is the amount sold for £25.00 So how can I do a formula that does this
first 500 at 10%
501 to 1000 at 15%
1001 up at 20%
= total commission

I have room for multiple cells if it easier?

thanks

Tony
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Tony
With the information that you provided " lets say in A7 is the number of sales 2000 for example, and in C7 is the amount sold for £25.00 So how can I do a formula that does this",

what is the result that you expect?
 
Upvote 0
See if either of these work for you.

The @MARK858 version is taken from here:-
Sliding Commission Scale (I know its been asked before!)

20210825 Commisions sliding scale.xlsx
ABCDEFG
5Sales QtyUnit PriceSaleCalc CommisionCalc Mark858
62000255000081258125
711001001010
85001005000050005000
95011005010050155015
10999100999001248512485
1110001001000001250012500
1210011001001001252012520
13
Sheet1
Cell Formulas
RangeFormula
D6:D12D6=A6*C6
E6:E12E6=IF(A6>1000,(A6-1000)*0.2+(1000-500)*0.15+(500*0.1), IF(A6>500,(A6-500)*0.15+(500*0.1), A6*0.1))*C6
F6:F12F6=SUMPRODUCT(--(A6>{0;500;1000}), C6*(A6-{0;500;1000}), {0.1;0.05;0.05})
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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