TREND
Gibt Werte zurück, die sich aus einem linearen Trend ergeben.
StatistischStatistik & Analyse
Was sie macht
Berechnet lineare Trendwerte (Array-Version von SCHÄTZER/PROGNOSE).
Syntax
TREND(y_werte; [x_werte]; [neue_x_werte]; [konstante])
Argumente
y_werte(range) — Bekannte Y.x_werte(range) — Bekannte X.
Beispiele
Trendlinie
Prognostiziert nächste 2 Werte.
FORMULA
=TREND(B2:B4; A2:A4; A5:A6)
RESULT
[400; 500]
SAMPLE DATA
| A | B | |
|---|---|---|
| 1 | X | Y |
| 2 | 1 | 100 |
| 3 | 2 | 200 |
| 4 | 3 | 300 |
| 5 | 4 | |
| 6 | 5 |