GROWTH Function
The GROWTH
function in Google Sheets calculates exponential growth trends based on known and new data.
Syntax
GROWTH(known_data_y, [known_data_x], [new_data_x], [b])
known_data_y
: The dependent data to analyze.known_data_x
: The independent data associated withknown_data_y
(optional).new_data_x
: New independent data to predict values for (optional).b
: A logical value to forceb
to 0 (optional).
Examples
- Basic Example
Calculate the growth trend of data in A1:A10
:
=GROWTH(A1:A10)
Notes
- Useful for forecasting and trend analysis.
Related Functions
TREND
: Calculate linear trends.