AllThings

New Member
Joined
Jul 20, 2009
Messages
5
We need a formula to help us figure commissions. The structure is:

.01 - 1,200.99 is paid at 41%
1,201 - 2000.99 is paid at 43%
2001 - 3000.99 is paid at 47%
3001 & up is paid at 50%

How do I get it to figure each piece in one formula? Example

For someone with 5000 commission-able sales the breakdown would be:

up to 1200 - 492
1201 - 2000 - 343.57
2001 - 3000 - 469.53
3001 - 5000 - 999.50
Total of - 2,304.60

Thanks!
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Excel 2010
AB
150002304.6
Sheet1
Cell Formulas
RangeFormula
B1=MIN(A1,1200)*0.41+MEDIAN(0,A1-1201,799)*0.43+MEDIAN(0,A1-2001,999)*0.47+MAX(A1-3001,0)*0.5


(you can also write a lookup or sumproduct formula for a separate table)
 
Upvote 0

Excel 2010
ABCDEFG
1Amount5,000.00BracketRateRate_Diff
2Commission2,306.000.0041%41%
31,200.0043%2%
42,000.0047%4%
53,000.0050%3%
6
72,306.00
8
9b
Cell Formulas
RangeFormula
B2= SUMPRODUCT(--(B1>rB),B1-rB,rDiff)
B7=MIN(B1,1200)*0.41+MEDIAN(0,B1-1200,800)*0.43+MEDIAN(0,B1-2000,1000)*0.47+MAX(B1-3000,0)*0.5
G2=F2-N(F1)
Named Ranges
NameRefers ToCells
rB='9b'!$E$2:$E$5
rDiff='9b'!$G$2:$G$5
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,444
Messages
6,124,893
Members
449,194
Latest member
JayEggleton

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