lookup and forecast a value in a range

sunilbalguri

New Member
Joined
Nov 25, 2008
Messages
31
can anyone help me with the formula for looking up and forecasting in a range

AB
0.00.000
0.10.021
0.20.088
0.30.196
0.40.337
0.50.500
0.60.671
0.70.838
0.80.968
0.91.066
1.01.000

<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>
</tbody>

example: how to find the value for 0.43 in column A

Sunil
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Something like this ?

C2 = 0.43

Code:
=VLOOKUP(ROUNDDOWN(C2,1),A:B,2,0)

o/p: 0.337

or

Code:
=VLOOKUP(ROUNDUP(C2,1),A:B,2,0)

o/p : 0.5
 
Upvote 0
Thank you for the reply, i would like to have an answer in between 0.337 and 0.5 by forecasting the values between 0.4 and 0.5 of column A
 
Upvote 0
Try,

Assume,

C2 = 0.43

then

Code:
=((VLOOKUP(ROUNDUP(C2,1),A:B,2,0)*VLOOKUP(ROUNDDOWN(C2,1),A:B,2,0))*C2)/(ROUNDUP(C2,1) *ROUNDDOWN(C2,1))

o/p : 0.362275

Hope this helps!
 
Upvote 0
Sorry .. My solution is wrong. I will let you know if i find something correct.
 
Upvote 0
How about?

=FORECAST(0.43,INDEX(B1:B11,MATCH(C1,A1:A11)):INDEX(B1:B11,MATCH(C1,A1:A11)+1),INDEX(A1:A11,MATCH(C1,A1:A11)):INDEX(A1:A11,MATCH(C1,A1:A11)+1))
 
Upvote 0

Forum statistics

Threads
1,215,869
Messages
6,127,416
Members
449,382
Latest member
DonnaRisso

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