lookup values within a range and calculate new value

NabMo

New Member
Joined
Jul 21, 2017
Messages
5
Please see ref table below which has a multiplier per percentage range, which means that based on what range your percentage falls in, it should return the multiplier however it should also add 0.01 increments for every percentage difference.

Percentage MinPercentage MaxMultiplierIncrement per 1%
0.00%79.99%0
80.00%91.99%10.01
92.00%100%1.2

<tbody>
</tbody>


<colgroup><col span="3"><col></colgroup><tbody>
</tbody>
As an example, if i have 82%, then multiplier would be 1.02 (1 for 80% + 0.02 for extra 2%)
likewise 95% would result in a multiplier of 1.23 (1.3 for 92% + 0.03 for extra 3%)

Please help with a formula.

Thank you in advance.

NabMo,
Cape Town
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Maybe...


A
B
C
D
E
F
G
1
Percentage Min​
Percentage Max​
Multiplier​
Increment per 1%​
Percentage​
Result​
2
0,00%​
79,99%​
0​
82%​
1,02​
3
80,00%​
91,99%​
1​
0,01​
95%​
1,23​
4
92,00%​
100%​
1,2​
5

Formula in G2 copied down
=VLOOKUP(F2,$A$2:$C$4,3)+(F2-VLOOKUP(F2,$A$2:$A$4,1))*$D$3*100

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,215,790
Messages
6,126,917
Members
449,348
Latest member
Rdeane

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