Finding last value using only moving averages.

gcefaloni

Board Regular
Joined
Mar 15, 2016
Messages
119
Hi guys,

I'm trying to find the latest monthly value but I only have access to data that represents a moving average of the last 12 months. What operation should I do to extrapolate what the last monthly data point is?

Example:
12 Mo Yield 2016-0112 Mo Yield 2016-0212 Mo Yield 2016-0312 Mo Yield 2016-0412 Mo Yield 2016-0512 Mo Yield 2016-0612 Mo Yield 2016-0712 Mo Yield 2016-0812 Mo Yield 2016-0912 Mo Yield 2016-1012 Mo Yield 2016-1112 Mo Yield 2016-1212 Mo Yield 2017-0112 Mo Yield 2017-0212 Mo Yield 2017-0312 Mo Yield 2017-0412 Mo Yield 2017-0512 Mo Yield 2017-0612 Mo Yield 2017-0712 Mo Yield 2017-0812 Mo Yield 2017-0912 Mo Yield 2017-1012 Mo Yield 2017-1112 Mo Yield 2017-12
4.174.114.054.003.923.833.763.703.633.583.543.713.643.633.633.623.613.643.663.653.673.663.653.56

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


I would like to be able to know what the actual yield for one specific month was by extrapolating it from the 12 months moving average of yields showing above.

What operation would I need to do to do that? Know the current yield for a specific month, not a moving average of 12 months at a specific month.

Thank you!
 

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.
To find the value for any specific month you subtract one 12 month average from the next and multiply by 12
so as an example 2016 -04 minus 2016 -03 =
4.00 - 4.05 = -0.05
-0.05 * 12= -0.6
so the formula is :
=12*(B4-B3)
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,391
Members
448,957
Latest member
Hat4Life

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