Interpolation?

M

Mel

What fx to use for the following scenario:
Month-End Dates (for many years) in column A
A dollar Amount for each Quarter End in Column B (correlating to the
month-end date).

We would like a function to easily copy down column B that will interpolate
values in between the dollar amounts for each quarter end.

NOTE: The edit-fill-series>Trend works for a manual fix however we have
thousands and thousands of dates with quarter end dates so a faster approach
would be much more efficient.

Thanks for any guidance/expertise you may provide.

Mel
 
S

Steve Dunn

Assuming your quarter end months are 3, 6, 9, and 12:

in B4:

=VLOOKUP(EOMONTH($A4,-MOD(MONTH($A4),3)),
$A$1:$B$5000,2,0)+(VLOOKUP(EOMONTH($A4,
3-MOD(MONTH($A4),3)),$A$1:$B$5000,2,0)-
VLOOKUP(EOMONTH($A4,-MOD(MONTH($A4),3)),
$A$1:$B$5000,2,0))*MOD(MONTH($A4),3)/3

copied in between all quarter ends.

HTH
Steve D.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top