Excel
POWER function in Excel
Returns the result of a number raised to a power
=POWER(number, power)POWER syntax and parameters
Two arguments, two required.
- numbernumberRequired
The base number. It can be any real number.
- powernumberRequired
The exponent to which the base number is raised.
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 Google Sheets
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 Excel gets this done.
- ABSReturns the absolute value of a numberMathGoogle Sheets
- ACOSReturns the arccosine of a numberMathGoogle Sheets
- ACOSHReturns the inverse hyperbolic cosine of a numberMathGoogle Sheets
- ACOTReturns the arccotangent of a numberMathGoogle Sheets
- ACOTHReturns the hyperbolic arccotangent of a numberMathGoogle Sheets
- AGGREGATEReturns an aggregate in a list or databaseMathNo Google Sheets equivalent