Google Sheets
FORECAST.LINEAR function in Google Sheets
See
=FORECAST.LINEAR(x, data_y, data_x)FORECAST.LINEAR syntax and parameters
Three arguments, three required.
- xnumberRequired
The value on the x-axis to forecast.
- data_yrangeRequired
The range representing the array or matrix of dependent data.
- data_xrangeRequired
The range representing the array or matrix of independent data.
FORECAST.LINEAR examples
Formulas you'll actually reuse.
Next month's revenue from a year of monthly history:
=FORECAST.LINEAR(13, B2:B13, A2:A13)Result
13482.5Extrapolate a dated series to a specific future date:
=FORECAST.LINEAR(DATE(2027,1,1), B2:B25, A2:A25)
FORECAST.LINEAR in Excel
Same name — your formula ports as-is.
Try FORECAST.LINEAR in the playground
Edit the example — nothing to install.
Preloaded with the FORECAST.LINEAR formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- AVERAGEIFReturns the average of a range depending on criteria.StatisticalExcel
- RANKReturns the rank of a specified value in a dataset.StatisticalExcel
- CELLReturns the requested information about the specified cell.InfoExcel
- CSCReturns the cosecant of an angle provided in radians. .MathExcel
- FILTERReturns a filtered version of the source range, returning only rows or columns which meet the specified conditions.FilterExcel
- FINDReturns the position at which a string is first found within text.TextExcel