Help with tiered commission formula

reggiestewart

New Member
Joined
Feb 11, 2020
Messages
2
Office Version
  1. 365
Platform
  1. MacOS
I am trying to create a formula that will do the following:

If the data entered meets a $12,000 threshold, the employee will earn a $250 bonus

Thereafter the employee will earn an additional $50 for every $1,000 in sales. This formula has no "ceiling"

I am familiar with "IF" formulas, but I'm not sure how to carry this on into infinity....In reality, he'll probably never exceed $25-$30K, but that is still a bulky "IF" formula in the way that I know how to write them.

i.e. If he has $18,320 in sales, he should earn the $250 for hitting the $12,000 threshold + $50 X 6 for exceeding $12,000 threshold by $6,000. (There is no provision for any amount between $x,000 and $y,000, if that makes sense)

Does this make sense? Any help would be greatly appreciated!!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Welcome to the forum!

How about:

Book1
AB
1AmountBonus
250000
312000250
412500250
513500300
621444700
Sheet6
Cell Formulas
RangeFormula
B2:B6B2=IF(A2>=12000,250+INT(MAX(0,A2-12000)/1000)*50,0)
 
Upvote 0
BEAUTIFUL!! Thank you so much! I will both use this and reverse engineer it so I can learn from it.

Take care,

Reggie

Welcome to the forum!

How about:

Book1
AB
1AmountBonus
250000
312000250
412500250
513500300
621444700
Sheet6
Cell Formulas
RangeFormula
B2:B6B2=IF(A2>=12000,250+INT(MAX(0,A2-12000)/1000)*50,0)
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,186
Members
449,071
Latest member
cdnMech

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