The Excel Forecast.Ets function uses an exponential smoothing algorithm to predict a future value on a timeline, based on a series of existing values.
The syntax of the function is:
Where the function arguments are:
target_date | - |
A date/time for which you want to predict a value. (Must be after the last date/time in the historical timeline). |
||||||||||||||||
values | - | The array of historical known values for which you want to forecast the next point. | ||||||||||||||||
timeline | - |
The independent array of dates/times, corresponding to each of the values. This must satisfy the following:
|
||||||||||||||||
[seasonality] | - |
An optional argument indicating the algorithm that should be used to detect seasonality in the data. If supplied, this must be a positive integer between 0 and 8784, meaning:
|
||||||||||||||||
[data completion] | - |
An optional argument specifying how the algorithm should handle missing points in the timeline. If supplied, the [data completion] argument can have the value 0 or 1 meaning:
|
||||||||||||||||
[aggregation] | - |
An optional argument specifying how the algorithm should aggregate values that have the same timestamp. If supplied, this can be any integer between 1 and 7 meaning:
|
Note: The Forecast.Ets function was first introduced in Excel 2016, so is not available in earlier versions of Excel. It is also not available in Excel 2016 for Mac.
A | B | |
---|---|---|
1 | Month | Earnings |
2 | Jan-2015 | 879 |
3 | Feb-2015 | 1259 |
4 | Mar-2015 | 1230 |
5 | Apr-2015 | 1471 |
6 | May-2015 | 1638 |
7 | Jun-2015 | 1371 |
8 | Jul-2015 | 1562 |
9 | Aug-2015 | 1526 |
10 | Sep-2015 | 1125 |
11 | Oct-2015 | 1340 |
12 | Nov-2015 | 830 |
13 | Dec-2015 | 726 |
14 | Jan-2016 | 917 |
15 | Feb-2016 | 1028 |
16 | Mar-2016 | 1449 |
17 | Apr-2016 | 1225 |
18 | May-2016 | 1437 |
19 | Jun-2016 | 1637 |
20 | Jul-2016 | 1345 |
21 | Aug-2016 | 1148 |
22 | Sep-2016 | 1075 |
23 | Oct-2016 | 928 |
24 | Nov-2016 | 852 |
25 | Dec-2016 | 752 |
26 | Jan-2017 | 989 |
27 | Feb-2017 | 1304 |
28 | Mar-2017 | 1192 |
29 | Apr-2017 | 1265 |
30 | May-2017 |
The above spreadsheet on the right shows a set of monthly earnings between Jan-2015 and Apr-2017. These values are plotted in the chart below:
The Excel Forecast.Ets function can be used to forecast the value of the earnings for May 2017, as follows:
This gives the result 1461.632054.
Note that, in the above example:
For further details of the Excel Forecast.Ets function, see the Microsoft Office website
If you get an error from the Forecast.Ets function, this is likely to be one of the following:
#N/A | - | Occurs if the supplied values and timeline arrays have different lengths. |
#NUM! | - |
Occurs if either:
|
#VALUE! | - | Occurs if one or more of the supplied [seasonality], [data completion] or [aggregation] arguments is non-numeric. |