Skip to content
Google Sheets

POWER function in Google Sheets

Returns a number raised to a power.

=POWER(base, exponent)

POWER syntax and parameters

Two arguments, two required.

  • basenumberRequired

    The number to raise to the exponent power.

  • exponentnumberRequired

    The exponent to raise base to.

POWER examples

Formulas you'll actually reuse.

  1. Growth factor after 10 years at rate B2 — same as (1+B2)^10:

    =POWER(1 + B2, 10)

    Result1.6289

  2. A cube root — fractional exponents take roots:

    =POWER(B2, 1/3)

    Result4

POWER in Excel

Same name — your formula ports as-is.

Try POWER in the playground

Edit the example — nothing to install.

Preloaded with the POWER formula from Example 1 — change anything and watch it respond.

Loading the editor…