Progressive Price Calculations - % Based

davecoppins

New Member
Joined
Nov 13, 2018
Messages
11
Hi - Hope you can help
I need to add a formula that calculates a margin percentage from a net purchase price (NPP). As the NPP increases, the margin percentage decreases

Example of the outcome required

NPP is between £00.01 & £10.00 calculate NPP + 200% (NPP = £07.50 calculate £07.50 + 200% = £22.50)
NPP is between £10.01 & £00.00 calculate NPP + 190% (NPP = £12.75 calculate £12.75 + 190% = £36.96)
NPP is between £20.01 & £30.00 calculate NPP + 170% (NPP = £27.10 calculate £27.10 + 170% = £73.17)
NPP is between £30.01 & £40.00 calculate NPP + 150% (NPP = £34.27 calculate £34.27 + 150% = £85.68)

Once I have the basic formula layout it should hopefully be easy to maintain and extend as required

Thanks in advance
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Welcome to Mr Excel forum

Maybe something like this


A
B
C
D
E
1
Lower bound​
%​
NPP​
Result​
2
0,01​
200%​
7,50​
22,50​
3
10,01​
190%​
12,75​
36,98​
4
20,01​
170%​
27,10​
73,17​
5
30,01​
150%​
34,27​
85,68​

Create the table in A1:B5

Formula in E2 copied down
=(LOOKUP(D2,A$2:A$5,B$2:B$5)+1)*D2

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,215,663
Messages
6,126,097
Members
449,291
Latest member
atfoley16

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