Adding "IF"s?

jrs2563

New Member
Joined
Nov 13, 2005
Messages
2
Howdy! I need to configure a cell to do a "2 tier" calculation for pricing. What I am trying to do is if an item sells for 25.00 or below, then the cost would be 5.25% of the selling price. If the item sold for MORE then 25.00, then I still want to calculate the 5% of the first 25.00 but then want to ADD an additional cost of 2.75% to the amount that sold OVER 25.00. I'm not real adept at doing complicated formulas in Excel. This is what I was trying, but I don't even know if you can ADD 2 different "IF" statements.

=IF((E12<25),(E12*5.25%))+IF((E12>25),(E12-25)*2.75%)

This will only do the portion that at the time is true. It wont add the 2 parts.

Any help will be appreciated. Thanks, Jim
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi Jim!

Welcome to the Board!

Something like this:

=IF(E2<=25,E2*5.25%,25*5.25%+(E2-25)*2.75%)

Best regards

Richard
 
Upvote 0
BIG Thanks to you Parsnip, AND to you barry houdini...both formulas work PERFECTLY!!!!!!!! I appreciate both your answers!! Jim
 
Upvote 0

Forum statistics

Threads
1,219,162
Messages
6,146,660
Members
450,706
Latest member
LGVBPP

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