
The Excel POWER function raises a number to a chosen power. For example, =POWER(5,2) means 5 squared, which is 25. =POWER(2,10) means 2 multiplied by itself 10 times, which gives 1024.
POWER gives the same result as the ^ operator. So =POWER(5,2) and =5^2 are equivalent. Many people use POWER when they want the formula to read more clearly, especially when the base or exponent comes from another cell.
Use POWER when you want to square, cube, find roots, or apply repeated growth in a formula.
Returns the result of base raised to exponent. For example, POWER(5,2) returns 25.
=POWER(number, power)
The first argument is the base number. The second argument is the exponent. In simple terms, Excel reads this as "raise this number to this power."
| Function or Operator | What It Does | Best Use |
|---|---|---|
POWER |
Raises a number to any power | Clear formulas, especially when inputs come from cells |
^ |
Does the same thing as POWER | Shorter formulas such as =5^2 |
SQRT |
Returns a square root | Simpler when you only need a square root |
EXP |
Raises e to a power | Natural exponential formulas |
If you only need a square root, SQRT is easier to read. But if you need cube roots, fourth roots, or any other custom exponent, POWER is more flexible.
The easiest way to think about POWER is repeated multiplication. =POWER(3,2) means 3 times 3. =POWER(3,3) means 3 times 3 times 3. That makes POWER useful for common tasks like squaring values, calculating areas, and working with repeated growth.
POWER also works with fractional exponents. That is how you can use it for roots. For example, =POWER(27,1/3) returns 3 because 3 x 3 x 3 equals 27. A square root is the same idea with 1/2, so =POWER(100,1/2) returns 10.
Another common use is compound growth. In formulas such as interest, each period builds on the previous one, so you raise a growth factor to a number of periods. That is why POWER appears often in finance, forecasting, and growth models.
This is the simplest use of POWER.
=POWER(B1,2)
If B1 contains 5, the result is 25. This works because squaring a number means multiplying it by itself once. It is a common pattern in geometry, statistics, and many everyday formulas.
In cell F1, raise B1 (5) to the power of 2.
A fractional exponent can be used to find a root.
=POWER(B2,1/3)
If B2 contains 27, the result is 3. That is because the cube root asks, "what number multiplied by itself three times gives 27?" POWER lets you do that with the exponent 1/3.
In cell F2, use POWER with exponent 1/3 to find the cube root of B2 (27).
This is a very practical use of POWER.
=POWER(1+B3,C3)
If B3 is 0.05 and C3 is 3, Excel calculates 1.05^3, which gives 1.157625. This is the growth factor after 3 periods at 5% growth each period. You can then multiply that result by a starting amount to get a final value.
In cell F3, calculate the growth factor by raising 1+B3 to the power of C3.
Both arguments can come from cells.
=POWER(B4,C4)
If B4 is 2 and C4 is 10, the result is 1024. This is useful when the base or the exponent may change, because you can update the cells without rewriting the formula.
In cell F4, raise B4 (2) to the power stored in C4 (10).
A few small behaviors are worth remembering. If the exponent is 0, the result is always 1. If the exponent is negative, POWER returns a reciprocal, so =POWER(2,-3) returns 0.125. Some combinations, such as a negative base with a fractional exponent, can return #NUM!.
POWER(number,1/n) to find an nth root.POWER(1+rate,periods) for repeated growth.^ operator if you want a shorter formula, but use POWER if it reads more clearly.POWER raises a number to a chosen exponent.=POWER(number,power)1/3 for roots.Tell your friends about this post