POWER function

Raises a number to a specified power, returning the exponential result needed for growth calculations, depreciation, and scaling models.

=POWER(number, power)

Generate a POWER formula

Describe what you need. The generator will reach for POWER where POWER is the right tool, and tell you when it is not.

How to get a better answer
  • Name your columns by letter and by header: "column F (Net Value)" beats "the amount column".
  • State every condition, including the negatives — "not cancelled" changes the formula's shape.
  • Say where the data starts if it is not row 1, and whether it will grow.
  • Check the settings above match your spreadsheet: the wrong argument separator is a syntax error on your machine.

Arguments

How POWER reads its arguments
numberrequiredpowerrequiredPOWER
ArgumentRequiredDescription
numberRequiredRequired. The base number to be raised to a power. Can be positive, negative, or zero; negative bases with fractional exponents cause #NUM! errors.
powerRequiredRequired. The exponent indicating how many times to multiply the base by itself. Can be any real number; non-numeric values cause #VALUE! errors.

Returns

Returns a numeric value representing the base number raised to the exponent power.

Availability

Excel: All · Google Sheets: Supported

Worked examples

1. Calculate annual maintenance cost inflation projection

VehicleService DateCost
Tesla Model 32024-01-15250
Tesla Model 32024-03-20350
Ford F-1502024-02-10180
=250*POWER(1.08,3)

Result: 314.93

POWER(1.08, 3) computes 1.08 raised to the 3rd power, yielding 1.259712, representing three consecutive years of 8% cost growth. Multiplying the baseline $250 service cost by this growth factor produces $314.93, showing realistic inflation impacts on fleet maintenance budgets. This demonstrates how compound effects accumulate exponentially over multiple years, essential for long-term cost forecasting in vehicle maintenance programs.

2. Determine maintenance urgency by odometer wear factor

VehicleOdometerService DateCost
Tesla Model 3450002024-01-15250
Tesla Model 3500002024-03-20350
Ford F-150320002024-02-10180
=POWER(45000/50000,2)

Result: 0.8100

POWER creates nonlinear scaling where mileage impacts maintenance urgency exponentially. At 45,000 miles relative to a 50,000-mile reference point, the urgency factor is 0.81 (81% of critical threshold). This quadratic relationship ensures vehicles approaching high mileage thresholds trigger maintenance alerts more sharply than linear scaling would, improving predictive maintenance scheduling accuracy across the fleet.

3. Calculate escalating service costs for repeated garage maintenance

VehicleGarageCostVisit
Tesla Model 3Downtown2501
Tesla Model 3Downtown3502
Toyota PriusUptown1501
=250*POWER(1.05,3)

Result: 289.41

POWER(1.05, 3) raises the 1.05 escalation factor to the 3rd power because the 4th service represents 3 increments above baseline. The result (1.157625) multiplied by the baseline $250 equals $289.41, reflecting how repeat diagnostics at the same garage increase in cost as cumulative wear data accumulates and more detailed analysis is required for each subsequent service visit.

Common errors

Which POWER error are you seeing?
POWER returned an error#VALUE!
Use a numeric value instead: POWER(250, 3) or reference a cell containing a number, like POWER(250, A2).
#NUM!
Either use a positive base (POWER(32, 0.5)) or apply ABS() first: POWER(ABS(-32), 0.5) if magnitude is what you need.
#NUM!
Reduce the exponent or work with logarithmic calculations instead: use LOG10 to manipulate exponents separately rather than computing the full result.
ErrorWhy it happensHow to fix it
#VALUE!POWER(250, "years") attempts to raise 250 to the power of text, which cannot be computed numerically.Use a numeric value instead: POWER(250, 3) or reference a cell containing a number, like POWER(250, A2).
#NUM!POWER(-32, 0.5) attempts to compute the square root of a negative number, which has no real solution in standard mathematics.Either use a positive base (POWER(32, 0.5)) or apply ABS() first: POWER(ABS(-32), 0.5) if magnitude is what you need.
#NUM!POWER(10, 308) attempts to compute a number so astronomically large that Excel cannot represent it within its numeric limits.Reduce the exponent or work with logarithmic calculations instead: use LOG10 to manipulate exponents separately rather than computing the full result.

Tips and when to use something else

  • POWER(x, 0) always returns 1, regardless of x. Use this for initialization logic or to create multiplier baselines in escalation models.
  • For simpler cases, Excel's exponentiation operator ^ works identically: =250^3 is equivalent to =POWER(250, 3). Choose whichever reads clearer in your formula context.
  • When modeling exponential growth (compound interest, inflation, cost escalation), use POWER(1 + rate, periods) with (1 + growth_rate) as the base for financially clear calculations.
  • For basic squaring or cubing only, use the ^ operator instead of POWER—it's simpler to read. Reserve POWER for dynamic exponents stored in cells or when clarity requires it.

Frequently asked questions

Can I use POWER with negative exponents?
Yes. POWER(2, -3) = 0.125 (equivalent to 1/(2³) = 1/8). Negative exponents compute the reciprocal, useful for discount factors, decay rates, or cost reductions in maintenance forecasting models.
What's the difference between POWER and the ^ operator?
They're functionally identical: POWER(3, 2) = 3^2 = 9. Use ^ for brevity in simple expressions or POWER for readability and when the exponent is a cell reference or complex formula.
How do I calculate compound cost growth over multiple years?
Use POWER with (1 + rate) as the base and periods as the exponent: FinalCost = InitialCost * POWER(1 + AnnualGrowthRate, Years). For a $250 service with 8% annual growth over 3 years: =250*POWER(1.08, 3) = $314.93.
Why does POWER with a negative base and fractional exponent fail?
You cannot take fractional roots (like square roots) of negative numbers in real mathematics. POWER(-4, 0.5) is undefined. If you need the absolute result, wrap the base: =POWER(ABS(-4), 0.5).

Need a different formula?

The full generator is not scoped to one function — describe any spreadsheet problem and it will pick.

Open the formula generator

Reviewed 2026-09-17