POW function

POW returns a base number raised to the power of an exponent, used for scaling calculations, growth rates, and exponential effects.

=POW(base, exponent)

Generate a POW formula

Describe what you need. The generator will reach for POW where POW 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 POW reads its arguments
baserequiredexponentrequiredPOW
ArgumentRequiredDescription
baseRequiredThe number to be raised to a power; can be positive, negative, or zero, but when negative or zero, exponent constraints apply.
exponentRequiredThe power to which base is raised; can be positive, negative, or decimal, determining the magnitude and direction of the calculation.

Returns

A numeric value representing the result of base raised to the exponent power.

Availability

Excel: Not available · Google Sheets: Supported

Worked examples

1. Calculate shelf space for square-stacked ingredients

IngredientQtyUnit
Tomatoes25kg
Basil12bunch
Olive Oil5L
Garlic300clove
=POW(B2, 2)

Result: 625

Tomatoes are stored 25 kg per batch. To calculate shelf space for square stacking, multiply quantity by itself: POW(25, 2) = 625. This gives the total square units of shelf space needed.

2. Calculate inventory retention rate after spoilage

IngredientQtyDays in StorageRetention Rate
Basil123=POW(0.98, 3)
=POW(0.98, 3)

Result: 0.9412

Basil spoils at 2% per day. Using POW(0.98, 3) calculates inventory remaining after 3 days: 0.9412 or about 94.12%. This models exponential decay for perishable goods.

3. Calculate bulk-order cost multiplier by tier

IngredientQtyBase CostBulk TierCost Multiplier
Olive Oil5€8.007=POW(1.05, 7)
=POW(1.05, 7)

Result: 1.4071

Olive oil costs increase 5% per bulk tier. At tier 7, the multiplier is POW(1.05, 7) = 1.4071, meaning the price is 40.71% higher than base cost. This models cumulative price scaling.

Common errors

Which POW error are you seeing?
POW returned an error#NUM!
Avoid negative exponents when base is zero; check input values before calculation or use IF to handle this edge case.
#VALUE!
Ensure both arguments are numeric values, not text; use VALUE() to convert text strings to numbers if needed.
#NUM!
Use smaller exponent values or switch to logarithmic calculations using LOG and EXP functions for very large results.
ErrorWhy it happensHow to fix it
#NUM!Base is 0 and exponent is negative, creating division by zero (0 to a negative power is undefined).Avoid negative exponents when base is zero; check input values before calculation or use IF to handle this edge case.
#VALUE!Arguments are supplied as text strings (e.g., "25" instead of 25) rather than actual numbers.Ensure both arguments are numeric values, not text; use VALUE() to convert text strings to numbers if needed.
#NUM!The exponent is too large, causing the result to exceed the maximum representable number (numeric overflow).Use smaller exponent values or switch to logarithmic calculations using LOG and EXP functions for very large results.

Tips and when to use something else

  • Use POW for any scaling, growth modeling, or exponential calculations—especially when compounding values over time.
  • POW(base, 2) squares a value; for square roots, consider using POW(value, 0.5) instead, or use SQRT() if your spreadsheet offers it.
  • Combine POW with IF for conditional calculations, such as applying different exponential factors to different ingredients based on their expiry dates.
  • For very large exponents, use LET to store intermediate results and avoid recalculating the same power multiple times.

Frequently asked questions

When should I use POW instead of basic multiplication or MULTIPLY?
Use POW when you need repeated multiplication with the same number—for example, 5 × 5 × 5 = POW(5, 3). MULTIPLY is for single multiplication; POW is for exponential growth or scaling.
Can POW be used with fractional exponents?
Yes, POW supports fractional exponents. POW(16, 0.5) returns 4 (the square root), and POW(8, 0.333...) returns 2 (the cube root). This makes it flexible for root calculations.
What's the difference between POW(base, 2) and multiplying base by itself?
They produce the same result mathematically, but POW is more concise and efficient in formulas. For example, POW(25, 2) = 625, same as 25*25, but clearer for larger exponents.
How can I use POW to model spoilage or decay in inventory?
Use POW with a retention rate as the base and days as the exponent. For example, POW(0.98, 5) means 98% retention per day for 5 days, resulting in 90.4% inventory remaining.

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