이 함수는 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.