I have a table with historical actual items history by client, by month. I have a 2nd table for YOY growth rate by client, by month. I'm looking for help to use these 2 tables to create a forecast for future periods (by month) that would multiple the YOY growth rate (from table 2) by the same prior year's month actuals (frome table 1).
Today, this is done in excel with the following formula:
Client 1: May 2014 FCST = ROUND(AR9*1.05, 0), where AR9 is May 2013.
Today, this is done in excel with the following formula:
Client 1: May 2014 FCST = ROUND(AR9*1.05, 0), where AR9 is May 2013.
Code:
Table 1 Sample: Client MonthValue YearValue SumOfItems Client 1 1 2014 12 Client 2 2 2014 10 Client 1 3 2014 14 Client 2 10 2013 1 Client 1 11 2013 14 Client 2 12 2013 12
Code:
Table 2 Sample: Client ForecastMonth YOY Growth Input Client 1 5 0.00% Client 2 5 10.00% Client 1 6 5.00% Client 2 6 2.00% Client 1 7 10.00% Client 2 7 10.00%
Comment