Returns the result of a number raised to a given power.
ฟังก์ชันนี้ทำงานใน Google Sheets เหมือนกับใน Excel — ไวยากรณ์และอาร์กิวเมนต์เดียวกัน
POWER(number, power)The POWER function calculates the value of a base number raised to a specified exponent. It is equivalent to using the caret (^) operator in Excel formulas.
=POWER(5, 2)ผลลัพธ์: 25
Calculates 5 squared.
=POWER(8, 1/3)ผลลัพธ์: 2
Calculates the cube root of 8.
No, they are functionally identical; =POWER(A1, 2) produces the same result as =A1^2.