Trouble with an if/then math formula

TRW Enterprises

New Member
Joined
Apr 13, 2018
Messages
2
I'm still learning Excel and have watched countless videos trying to figure out this formula but can't find it.
I'm trying to add a specific percentage to each line of costs based on what range each number falls between numerically.
I need any number 0-74 to have 150% added, 75-99 to add 140%, 100-124 to add 135%, and anything 125 or higher to add 125%.
I need them in a side by side column so I can compare the original number to the new number.
I know this is a pretty lengthy formula and it's honestly still out of my grasp on how to do this one. Once I actually see it I believe it'll finally make perfect sense. Any help would be highly appreciated.
Thanks, Tony
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi,

This will work for what you described:


Excel 2010
AB
11522.5
270105
385119
4111149.85
5145181.25
Sheet11
Cell Formulas
RangeFormula
B1=IF(A1>124,A1*1.25,IF(A1>99,A1*1.35,IF(A1>74,A1*1.4,A1*1.5)))


B1 formula copied down.
 
Upvote 0
You can use LOOKUP as well if you want. Something like:

=LOOKUP(A1,{0,75,100,125},A1*{2.5,2.4,2.35,2.25})
 
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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