Raise to a power, take any root, or compute ex. POWER (or the ^ operator) handles exponents, SQRT the square root, and EXP the natural exponential — the inverse of LN.
The example
2 to the 10th = 1024.
| A | B | |
|---|---|---|
| 1 | Expression | Result |
| 2 | POWER(2,10) | 1024 |
| 3 | SQRT(144) | 12 |
The formula
The formula:
How it works
How it works:
POWER(base, exponent)raises a number to a power — identical to the^operator.SQRT(value)is the square root; for any other root use a fractional exponent:=A2^(1/3)for a cube root.EXP(x)computes ex — the inverse ofLN, used in continuous growth and decay.- Chain them: compound growth is
=principal * POWER(1+rate, years).
Negative bases and fractional powers can error (no real root). For an odd root of a negative number, take the root of the absolute value and reapply the sign: =SIGN(A2)*ABS(A2)^(1/3).
Try it: interactive demo
Base and exponent.
Variations
Cube root
Fractional power:
e to the x
Exponential:
Compound growth
Power in finance:
Pitfalls & errors
^ and POWER match. A2^B2 equals POWER(A2,B2) — use whichever reads clearer.
Negative base, fractional power. No real root → #NUM! error. Use the SIGN/ABS trick.
EXP vs POWER. EXP is base e specifically; for other bases use POWER or ^.
Practice workbook
Frequently asked questions
How do I raise a number to a power in Excel?
How do I take a cube root or nth root?
What does EXP do?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class