POWER raises a number to a given exponent — the function form of the ^ operator.
POWER raises a base number to an exponent — POWER(2,3) means 2 to the power of 3, which is 8.
It does exactly the same thing as the ^ operator (2^3), but as an explicit function — some people find it clearer inside long formulas.
=POWER(number, power)| Argument | Description |
|---|---|
| number required | The base number. |
| power required | The exponent to raise it to. |
=POWER(2,3)Returns 8, same as =2^3.
=POWER(B2,2)Squares whatever value is in B2 — used in BMI, variance, and other squared-term formulas.
=A1*POWER(1.05,10)Grows A1 by 5% per year, compounded over 10 years.
They are functionally identical — use whichever reads more clearly in context.
ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.
Start practicing free →