Formula between 2 numbers

fmjen3505

New Member
Joined
Jan 13, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I would like to create a formula to calculate the following
Sale AmountCommission
$0 - $10,0008%
$10,001 - $20,0006%
$20,001 - $30,0005%
$30,000 +3%
EXAMPLE
Sale AmountCommission
$25,000 job$1,650<-- Total
First $10K$8008% of $10K
Second $10K$6006% of $10K
Remaining $5K$2505% of $5K
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
For the total, you could use the following (where sale amount is in A1):
Excel Formula:
=IF(A1<=10000,A1*0.08,IF(A1<=20000,800+((A1-10000)*0.06),IF(A1<=30000,1400+((A1-20000)*0.05),1900+((A1-30000)*0.03))))
 
Upvote 0
Solution

Forum statistics

Threads
1,226,695
Messages
6,192,478
Members
453,727
Latest member
tuong_ng89

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