Multiply a Whole Range with PRODUCT

Excel Formulas › Math

All versionsPRODUCT

PRODUCT multiplies every number in a range together — the way SUM adds them. It’s the tool for compound growth factors, combined probabilities, and any “multiply these all together” calculation.


Quick formula: to multiply all the values in B2:B6:
=PRODUCT(B2:B6)
It multiplies the whole range in one step — no B2*B3*B4*… chain to type or maintain.

Functions used (tap for the full reference guide):

The example

Yearly growth factors multiplied into a total factor.

AB
1YearGrowth factor
211.10
321.05
431.20
5Combined:1.386

The formula

All factors multiplied (1.10 × 1.05 × 1.20):

=PRODUCT(B2:B4) // 1.10 × 1.05 × 1.20 = 1.386

How it works

PRODUCT is the multiplicative SUM:

  1. PRODUCT(range) multiplies every numeric cell in the range together.
  2. Three growth factors of +10%, +5%, +20% combine to 1.386 — a 38.6% total gain, which is not the same as adding the percentages.
  3. Like SUM, it ignores text and blank cells, and you can pass several ranges or numbers.
  4. For a conditional product, SUMPRODUCT or a PRODUCT(IF()) array can multiply only matching rows.

Why not add the percentages? +10% then +5% isn’t +15% — it’s 1.10 × 1.05 = 1.155 (+15.5%). PRODUCT of growth factors gets compounding right where addition silently doesn’t.

Try it: interactive demo

Live demo

Type factors (commas); see their product.

Product:

Variations

Total return from factors

Subtract 1 for the percentage gain:

=PRODUCT(B2:B10) - 1

Conditional product

Multiply only flagged rows (array):

=PRODUCT(IF(C2:C10="x", B2:B10, 1))

Combined probability

Independent events all occurring:

=PRODUCT(B2:B10)

Pitfalls & errors

A blank isn’t a 1. PRODUCT ignores blanks (good), but a stray 0 makes the whole product 0. Check for zeros if the result collapses.

Don’t add what should multiply. Growth/discount factors compound — multiply them. Adding percentages understates or overstates the combined effect.

Conditional product needs an array. PRODUCT(IF()) may need Ctrl+Shift+Enter in older Excel; the IF replaces non-matches with 1 so they don’t change the product.

Practice workbook

📊
Download the free Multiply a Whole Range with PRODUCT practice workbook
Growth factors with live PRODUCT, the total-return and conditional-product variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I multiply a range of numbers in Excel?
Use =PRODUCT(range), e.g. =PRODUCT(B2:B6) multiplies every value together, the multiplicative equivalent of SUM.
How do I combine yearly growth rates?
Multiply the growth factors with PRODUCT: =PRODUCT(B2:B4)-1. Adding the percentages is wrong because growth compounds.
How do I multiply only certain rows?
Use a conditional array: =PRODUCT(IF(flag="x", values, 1)), where non-matching rows become 1 and don't affect the product.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Multiply and add (SUMPRODUCT) · Compound interest · Cumulative running totals (SCAN)

Function references: PRODUCT · SUMPRODUCT