Commission formula help

ksavagecc

New Member
Joined
Jan 17, 2011
Messages
10
I need a formula to calculate tiered commissions based on incremental sale numbers. For example, .5% for 0-25, .65% for 26-49, .75% for 50-99, .9% for 100-149, 1.0% for >150. Each sale commission is based on total value of each individual sale.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
If A1 contains the quantity,

=SUMPRODUCT( ($A9 > {0;26;50;100;150}) * ($A9 - {0;26;50;100;150}) * {0.5;0.15;0.1;0.15;0.1}% )

returns the percentage (format the result as 0.0%)

{0;26;50;100;150} are the breakpoints, and

{0.5;0.15;0.1;0.15;0.1} are the differences between adjacent rates.

EDIT: I think I misunderstood the problem, sorry. Maybe

=LOOKUP(A9, {0;26;50;100;150}, {0.5;0.65;0.75;0.9;1}% )
 
Last edited:
Upvote 0
Thank you for the quick reply. the post was my first ever and I left some information out. I am using 2010 Excel and the answer I need is the commission to be paid. Column N has the value of each sale listed in it.
 
Upvote 0
Maybe

=N1 * LOOKUP(N1, {0;26;50;100;150}, {0.5;0.65;0.75;0.9;1}% )
 
Upvote 0
Still working with a lookup table, and your very generous comission rates

Excel Workbook
LMNOP
1SalespersonTotal SalesComission to be paidCommision Table
2Salesman 15843.500.5
3Salesman 27858.5260.65
4Salesman 3116104.4500.75
5Salesman 42422421000.9
6Salesman 52262261501
7Salesman 6242242
8Salesman 73724.05
9Salesman 8189189
10Salesman 9119107.1
11Salesman 10128115.2
Sheet1
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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