HELP! Conditional Formula

wgarratt

New Member
Joined
Jul 26, 2007
Messages
1
Hello,

I am trying to create a formula that will take a value in a cell and multiply the first 2000 by a certain rate and then multiply the remainder of the value by a second rate and add them together to make a total in one cell.

For Example:

Cell Value 15,000
Multiply by first rate 2000*.19
Multiply by the second rate 13,000*.20
Total 2,980


Also, if the value is lower then 2000 then multiply by the first rate... Hopefully this makes sense... any suggestions will help.

Thank you!
Wendy
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Welcome to the board.

Try:
=MIN(A1+0,2000)*0.19+MAX(0,A1-2000)*0.2
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

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