Hi Eveyone ,
here in below table I want to calculate the Forecasting of year, the logic is as below
sum of TotalValue*Weight1 Corresponding to each year would be the TotalValue of year 2014 and for the calculation of year 2015 for year 2010 Weight1 would be 0.02 and for 2011 Weight1 would be 0.03 as usually for year 2012,2013 and for 2014 Weight1 would be 0.75 by using the same above logic sum of TotalValue*Weight1 Corresponding to each year
(means this time year will start 2010 to 2014) result would be the TotalValue for year 2015 as usually for year 2016
Year | TotalValue | Weight1 |
2009 | 235378488.4 | 0.02 |
2010 | 298657706 | 0.03 |
2011 | 345591332 | 0.05 |
2012 | 362318107.7 | 0.15 |
2013 | 387565287.7 | 0.75 |
expected result is
Year | TotalValue |
2009 | 235378488.4 |
2010 | 298657706 |
2011 | 345591332 |
2012 | 362318107.7 |
2013 | 387565287.7 |
2014 | 1394132433 |
2015 | 1138190918 |
2016 | 1099922688 |
Please anyone give me some idea that how to find that result
Thanks in advance