Calculating price/discount increase

mreinsmith

New Member
Joined
May 7, 2016
Messages
6
As the price increases for an item the discount increases, the data I have is like this:

At $21.49 the discount is 8%
At $89.70 the discount is 17%
At $135.00 the discount is 21%
And so on

I need to figure out how this increase progresses or where the changes occur

I might just be missing an obvious approach but I'm not sure

Any help would be appreciated

Thank you
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Book1
ABCD
1AmountDiscount %Discount $New Price
2$89.508%$7.16$82.34
Sheet1
Cell Formulas
RangeFormula
B2B2=IFERROR(LOOKUP(A2,{21.49,89.7,135},{0.08,0.17,0.21}),"No Discount")
C2C2=IFERROR(A2*B2,"")
D2D2=IF(C2<>"",A2-C2,A2)
 
Upvote 0
Solution
Thank you

Gave it a shot and it works well

Hopefully as I add more data I will be able to better predict the discount ranges
 
Upvote 0

Forum statistics

Threads
1,215,196
Messages
6,123,578
Members
449,108
Latest member
rache47

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