Commision Formula

Welsh Mark3

Board Regular
Joined
Apr 7, 2014
Messages
164
Office Version
  1. 365
I'm looking to create a formula that calculates sales commission from monthly sales achieved. Cell A1 will contain monthly sales achieved.

The commission structure is

o 0-2000,0%
o 2001-4000,15% (retroactive to dollar 1)
o 4001-6000,30% (30% applies to 4001-6000)
o 6001+,45% (45% applies to everything above 6001)


Please let me know if you can help.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
try this


Excel 2013/2016
ABCDE
1salescommissionsalescommission
25,00060000%
32,00115%
44,00115%
56,00115%
167
Cell Formulas
RangeFormula
B2=SUMPRODUCT(--(A2>D2:D5),A2-D2:D5,E2:E5)
 
Last edited:
Upvote 0
I think this formula is flawed somewhere. For example if $4000 the result should be $600, this formula returns $299.85
 
Upvote 0
ok, i missed the (retroactive to dollar 1) bit,

try the amended formula

=SUMPRODUCT(--(A2>D2:D5),A2-D2:D5,E2:E5)+IF(A2>2000,2000*0.15,0)
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,435
Members
452,326
Latest member
johnshaji

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