Raising to a power uses POWER or the ^ operator; square roots use SQRT. The trick most people miss: any nth root is just a fractional exponent — the cube root of 27 is 27^(1/3).
1/n) is the nth root. POWER(A2, 3) equals A2^3.
The example
Powers and roots of a value.
| A | B | |
|---|---|---|
| 1 | Operation | Result |
| 2 | 2 ^ 10 | 1024 |
| 3 | SQRT(144) | 12 |
| 4 | 27 ^ (1/3) | 3 |
The formula
Cube and cube root:
How it works
Powers and roots are two sides of the same operation:
A2 ^ n(orPOWER(A2, n)) raises A2 to the power n —2^10 = 1024.SQRT(A2)is the square root; it equalsA2 ^ (1/2).- Any nth root is a power of
1/n: the cube root is^(1/3), the 4th root is^(1/4). - Negative exponents give reciprocals:
2^-1 = 0.5. Fractional exponents like8^(2/3)combine a power and a root.
This powers CAGR and growth math: the per-period growth rate is (end/start)^(1/periods) - 1 — an nth root in disguise. Fractional exponents show up all over finance and science.
Try it: interactive demo
Enter a value and an exponent (try 1/3 for cube root).
Variations
Square root
SQRT or ^(1/2):
Any nth root
The 5th root of 32:
Compound growth rate
An nth root in finance:
Pitfalls & errors
#NUM! from roots of negatives. The square root of a negative (or an even root) isn’t a real number — SQRT(-4) errors. Use ABS or IMSQRT (complex) if needed.
Parenthesize fractional exponents. Write A2^(1/3), not A2^1/3 — without parentheses Excel computes (A2^1)/3.
Operator precedence. -2^2 is 4 in Excel (it negates after squaring? actually it’s 4) — when in doubt, add parentheses to make intent clear.
Practice workbook
Frequently asked questions
How do I raise a number to a power in Excel?
How do I calculate an nth root in Excel?
Why does a root return #NUM!?
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