logo
excelfunctions.org
bookmarks

TREND

Returns values along a linear trend.

StatisticalStatistics & Analysis

What it does

Calculates linear trend values (like FORECAST but for arrays).

Syntax

TREND(known_y's, [known_x's], [new_x's], [const])

Arguments

  • known_y's(range) β€” Y values.
  • known_x's(range) β€” X values.

Examples

Trend Array

Forecast next 2 points.

FORMULA
=TREND(B2:B4, A2:A4, A5:A6)
RESULT
[400; 500]
SAMPLE DATA
AB
1XY
21100
32200
43300
54
65