Multiply cell by varying percent based on cell value.

lesmcqueen73

New Member
Joined
May 8, 2016
Messages
3
I've tried to find an answer here but I actually don't know the correct name (if there is one) for this formulation.

What I'd like to do is multiply a cell by say 10% but only if the cell is equal/less than $100.... or... multiply by 5% if the cell is greater than $100.

I have a range of products with their corresponding prices that need to have a mark-up set for each, so if product A is $100 then multiply by 10%... or if product A is greater than $100 then multiply by 5%.

The end result would be for example.

Product A $100 $110
Product B $50 $55
Product C $99 $108
Product D $150 $157

Thanks for any help here.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Hi,

Like this?


Excel 2010
ABC
1Product ListPriceAfter Mark Up
2Product A$100.00$110.00
3Product B$50.00$55.00
4Product C$99.00$108.90
5Product D$150.00$157.50
Sheet1
Cell Formulas
RangeFormula
C2=IF(B2<=100,B2*1.1,B2*1.05)

Formula copied down.
 
Last edited:
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0

Forum statistics

Threads
1,215,334
Messages
6,124,323
Members
449,154
Latest member
pollardxlsm

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