Multiplying based on value

jeremyjohnson

New Member
Joined
Aug 6, 2016
Messages
3
I have a column of totals that I need to multiply by different numbers based on their value.

Units that sold $1 to $4,999 in 2015 and increase sales by 20%
Units that sold $5,000 to $9,999 in 2015 and increase sales by 15%
Units that sold $10,000+ in 2015 and increase sales by 10%

I really don't know where to begin. I have tried several IF statements, but I can't seem to get it correct.

Thank you all for any help you can provide. This may be simple for you but I am ready to bang my head against a wall.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.

Excel 2010
ABCDE
100.2
220800.250000.15
3100000.1100000.1
485580.15
545680.2
655480.15
712830.2
8173940.1
999990.15
1011730.2
114930.2
1277160.15
1350000.15
144990.2
15152400.1
166770.2
1721660.2
1849990.2
1987100.15
20183030.1
Sheet6
Cell Formulas
RangeFormula
B2=VLOOKUP(A2,$D$1:$E$3,2,1)


the formula can hold the array also
 
Upvote 0
Thank you, I understand how to do that, but I need to have a formula that does all of that behind the scenes based on the numbers that are entered.

I need the formula to determine that the cell falls in the range of 1-4999 and then if it does to multiply it by 1.2. If it is between falls between 5000-9999 to multiply if by 1.15 and if it is greater than 9999 to multiply if by 1.1.

I need the formula to do those calculations behind the scenes.
 
Upvote 0
This?


Excel 2010
AB
220802496
31000011000
485589841.7
545685481.6
655486380.2
712831539.6
81739419133.4
9999911498.85
1011731407.6
11493591.6
1277168873.4
1350005750
14499598.8
151524016764
16677812.4
1721662599.2
1849995998.8
19871010016.5
201830320133.3
Sheet6
Cell Formulas
RangeFormula
B2=A2*(1+VLOOKUP(A2,{0,0.2;5000,0.15;10000,0.1},2,1))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,680
Members
449,463
Latest member
Jojomen56

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