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

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
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,223,886
Messages
6,175,193
Members
452,616
Latest member
intern444

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