Calculates predicted exponential growth by using existing data.
ฟังก์ชันนี้ทำงานใน Google Sheets เหมือนกับใน Excel — ไวยากรณ์และอาร์กิวเมนต์เดียวกัน
GROWTH(known_ys, [known_xs], [new_xs], [const])The GROWTH function returns values along an exponential trend. It uses the least squares method to fit an exponential curve to your existing data points.
=GROWTH({10,20,40}, {1,2,3}, {4})ผลลัพธ์: 80
Predicts the next value in the doubling sequence.
GROWTH calculates exponential trends, while TREND calculates linear trends.