Lookup as value grows

jamtay317

Well-known Member
Joined
Mar 6, 2013
Messages
769
Hello, I'm trying to work on a calculator that will lookup values and change as the value grows. For example:

If I have something like this:

Our Rate table may look like:
0 .1
15 .2
25 .3

100 should be sum of 1* Rate Lookup all the way to 100 * Rate Lookup
200 should be sum of 101* Rate Lookup all the way to 200 * Rate Lookup
300 should be sum of 201* Rate Lookup all the way to 300 * Rate Lookup

When sum of value gets to RateNumber it should use next
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
I'm not entirely clear on your requirements, but consider this:

Book1
ABCDEFG
1ValueRateRate Table
237585Low rangeHigh RangePercentDelta percent
301000.10.1
41002000.20.1
52003000.250.05
63005000.40.15
750010000.60.2
8100099999990.650.05
Sheet9
Cell Formulas
RangeFormula
B2B2=SUMPRODUCT((A2-D3:D8),G3:G8,--(A2>D3:D8))
G3:G8G3=F3-N(F2)


Create your table in D1:G8. Your values should be in D3:F8, then add the formula in G3 and drag down. Then you can use the formula in B2 to calculate the combined rate. In this example, you have 100*.1 + 100*.2 + 100*.25 + 75 * .4, giving 85. Let us know if that is what you're looking for.
 
Upvote 0

Forum statistics

Threads
1,214,431
Messages
6,119,458
Members
448,899
Latest member
maplemeadows

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