

Although the timeline requires a constant step between data points, FORECAST.ETS will aggregate multiple points which have the same time stamp. The default value of 1 will account for missing points by completing them to be the average of the neighboring points.Īggregation Optional. 0 will indicate the algorithm to account for missing points as zeros. Although the timeline requires a constant step between data points, FORECAST.ETS supports up to 30% missing data, and will automatically adjust for it. Any seasonality above that number will result in the #NUM! error.ĭata completion Optional. Maximum supported seasonality is 8,760 (number of hours in a year). For any other value, FORECAST.ETS will return the #NUM! error. Positive whole numbers will indicate to the algorithm to use patterns of this length as the seasonality. 0 indicates no seasonality, meaning the prediction will be linear. The default value of 1 means Excel detects seasonality automatically for the forecast and uses positive, whole numbers for the length of the seasonal pattern. If the ranges of the timeline and values aren't of same size, FORECAST.ETS will return the #N/A error. If timeline contains duplicate values, FORECAST.ETS will return the #VALUE! error. If a constant step can't be identified in the provided timeline, Forecast.ETS will return the #NUM! error. The timeline isn't required to be sorted, as FORECAST.ETS will sort it implicitly for calculations. The dates in the timeline must have a consistent step between them and can’t be zero. The independent array or range of numeric data. Values are the historical values, for which you want to forecast the next points.

If the target date is chronologically before the end of the historical timeline, FORECAST.ETS returns the #NUM! error. The data point for which you want to predict a value. The FORECAST.ETS function syntax has the following arguments: SyntaxįORECAST.ETS(target_date, values, timeline,, , ) For this type of timeline, it’s very useful to aggregate raw detailed data before you apply the forecast, which produces more accurate forecast results as well. For example, that could be a monthly timeline with values on the 1st of every month, a yearly timeline, or a timeline of numerical indices. This function requires the timeline to be organized with a constant step between the different points. You can use this function to predict future sales, inventory requirements, or consumer trends. The predicted value is a continuation of the historical values in the specified target date, which should be a continuation of the timeline. Important: The function FORECAST.ETS is not available in Excel for the Web, iOS, or Android.Ĭalculates or predicts a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm.
