Google Sheets
POWER function in Google Sheets
Returns a number raised to a power.
=POWER(base, exponent)POWER syntax and parameters
Two arguments, two required.
- basenumberRequired
The number to raise to the exponent power.
- exponentnumberRequired
The exponent to raise base to.
POWER examples
Formulas you'll actually reuse.
Growth factor after 10 years at rate B2 — same as (1+B2)^10:
=POWER(1 + B2, 10)Result
1.6289A cube root — fractional exponents take roots:
=POWER(B2, 1/3)Result
4
POWER in Excel
Same name — your formula ports as-is.
Try POWER in the playground
Edit the example — nothing to install.
Preloaded with the POWER formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- ABSReturns the absolute value of a number.MathExcel
- ACOSReturns the inverse cosine of a value, in radians.MathExcel
- ACOSHReturns the inverse hyperbolic cosine of a number.MathExcel
- ACOTReturns the inverse cotangent of a value, in radians. .MathExcel
- ACOTHReturns the inverse hyperbolic cotangent of a value, in radians. Must not be between -1 and 1, inclusive..MathExcel
- ASINReturns the inverse sine of a value, in radians.MathExcel