Spread.NET 17 Formula Reference
Formula Functions / Functions D to G / FORECAST.ETS
In This Topic
    FORECAST.ETS
    In This Topic

    This function calculates or predicts a future value based on existing values by using the AAA version of the Exponential Triple Smoothing (ETS) algorithm.

    Syntax

    =FORECAST.ETS(target_date,values,timeline,[seasonality],[data_completion],[aggregation])

    Arguments

    The function has the following arguments:

    Argument

    Description

    target_date

    [Required] is a date for which you want to predict a new value. Must be after the last date in the timeline.
    values [Required] is a range of the historical values for which you want to predict a new point.
    timeline

    [Required] is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).

    seasonality

    [Optional] is a numeric value that specifies which method should be used to detect the seasonality. The possible values are listed below.

    • 1 or omitted:  Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern.
    • 0:  No seasonality, the prediction will be linear.
    • an integer greater than or equal to 2: The specified number is used for the length of the seasonal pattern.
    data_completion

    [Optional] is a numeric value that specifies how to process the missing data points in the timeline data range. The possible values are listed below.

    • 1 or omitted:  Missing points are calculated as the average of the neighboring points.
    • 0:  Missing points are treated as zero values.
    aggregation

    [Optional] is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. The possible values are listed below.

    Numeric Value Function
    1 or omitted AVERAGE

    2

    COUNT

    3

    COUNTA

    4

    MAX

    5

    MEDIAN

    6

    MIN
    7: SUM

    Remarks

    This function requires the timeline to be organized with a constant step between the different points. 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. 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.

    Data Types

    Returns a specified statistical value relating to a time series.

    Examples

    Version Available

    This function is available in product version 16.0 or later.