Formula Guide

The Excel POWER Function
explained simply

POWER raises a number to a given exponent — the function form of the ^ operator.

ExcelPro · 3 min read · Updated June 2026
Contents
  1. What does POWER do?
  2. Syntax
  3. 3 examples
  4. FAQ

What does POWER do?

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.

Syntax

=POWER(number, power)
ArgumentDescription
number requiredThe base number.
power requiredThe exponent to raise it to.

Examples

Example 1
Basic exponent
=POWER(2,3)

Returns 8, same as =2^3.

Example 2
Square a number
=POWER(B2,2)

Squares whatever value is in B2 — used in BMI, variance, and other squared-term formulas.

Example 3
Compound growth over time
=A1*POWER(1.05,10)

Grows A1 by 5% per year, compounded over 10 years.

Common mistakes

⚠️ Treating POWER and ^ as different

They are functionally identical — use whichever reads more clearly in context.

FAQ

Can the exponent be a decimal?
Yes — fractional exponents calculate roots, e.g. =POWER(9,0.5) is the same as the square root of 9.

Practise Excel with real data

ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.

Start practicing free →

Related formulas

SQRT PRODUCT ABS