The Excel Forecast.Linear Function calculates a new y-value using the simple straight line equation:
The Excel Forecast.Linear function predicts a future point on a linear trend line fitted to a supplied set of x- and y- values.
The syntax of the function is:
Where the function arguments are:
x | - | A numeric x-value for which you want to forecast a new y-value. |
known_y's | - | An array of known y-values. |
known_x's | - | An array of known x-values. |
Notes:
In the following spreadsheet, the Excel Forecast.Linear function is used to predict an additional point along the straight line of best fit through a set of known x- and y-values (stored in cells F2:F7 and G2:G7).
As shown in cell F7 of the spreadsheet, the function to calculate the forecast y-value at x=7 is:
This gives the result 32.666667.
For further details of the Excel Forecast.Linear function, see the Microsoft Office website
If you get an error from the Forecast.Linear function, this is likely to be one of the following:
#N/A | - | Occurs if the supplied known_x's and the supplied known_y's arrays have different lengths. |
#DIV/0! | - | Occurs if the variance of the supplied known_x's is equal to zero. |
#VALUE! | - | Occurs if the supplied future value of x is non-numeric. |