POWER Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel POWER function raises a number to a power — identical to the ^ operator, but as a readable function. A fractional exponent lets it compute any root.


Quick answer:
=POWER(2,10) 2 to the 10th = 1024

Syntax

=POWER(number, power)
ArgumentDescription
numberRequiredThe base number you want to raise to a power.
powerRequiredThe exponent. Use a fraction (e.g. 1/3) to take a root, or a negative value for a reciprocal power.

How to use it

POWER does exactly what the caret operator does — =POWER(2,10) equals =2^10 — but reads more clearly inside a longer formula:

=POWER(2,10) // 2^10 = 1024
=POWER(8,1/3) // cube root of 8 = 2
=POWER(2,-1) // reciprocal = 0.5

A fractional exponent is the trick for roots: the 1/n power is the nth root, so =POWER(8,1/3) gives the cube root, 2. For a plain square root, SQRT is the simpler choice.

POWER vs ^: they are equivalent. Use ^ for quick math and POWER when a named function makes a complex formula easier to read.

Try it: interactive demo

Live demo

Pick a POWER example to see the formula and its result.

Result:

Practice workbook

📊
Download the free POWER practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Is POWER the same as the ^ operator?
Yes. =POWER(2,10) and =2^10 both return 1024. POWER is just the function form, handy for readability in long formulas.
How do I take a cube root or other root with POWER?
Raise the number to 1/n. The cube root of 8 is =POWER(8,1/3) = 2; the fourth root of 16 is =POWER(16,1/4) = 2.
Can POWER use negative exponents?
Yes. A negative power gives the reciprocal: =POWER(2,-1) = 0.5 and =POWER(2,-2) = 0.25.
What is POWER(anything, 0)?
Any nonzero number raised to the power 0 is 1, so =POWER(5,0) = 1. (POWER(0,0) also returns 1 in Excel.)

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: SQRT · EXP · LOG · PRODUCT · SQRTPI