In Excel: use =PRODUCT(range) — it multiplies every number in the range together, so =PRODUCT(A2:A5) is A2*A3*A4*A5 in one call.
Syntax
Arguments
| Argument | Description | |
|---|---|---|
number1 | required | The first value, range or array to multiply. |
number2, ... | optional | Up to 255 further values or ranges. Text and blanks are ignored. |
Related functions
Select the result cell and type =PRODUCT(.
Select the range of factors, or list values separated by commas.
Press Enter.
For a cumulative growth figure, subtract 1 from the result and format as a percentage.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
PRODUCT multiplies its arguments together, and does for multiplication what SUM does for addition: it survives inserted rows, ignores blanks and text instead of erroring on them, and stays readable across a long range. The blank-tolerance is the important part — a chain of asterisks breaks the moment one cell holds text, while PRODUCT skips it. Its classic use is compounding a series of growth or retention factors, where multiplying the periods together is exactly the calculation. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “product formula in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
Compounding four quarterly growth factors in A2:A5 (1.04, 1.02, 0.99, 1.06): =PRODUCT(A2:A5) returns about 1.1128, an 11.28 % gain over the year. Volume of a box from three dimension cells: =PRODUCT(B2:D2). Applying two successive discounts: =PRODUCT(1-0.15, 1-0.10) returns 0.765. PRODUCT is the multiplication counterpart to SUM, and the only clean way to compound a column of factors without a fragile chain of asterisks. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. The short version of “product formula in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Including a zero in the range, which makes the whole product zero — filter or guard against blanks-entered-as-zero.
- Confusing PRODUCT with
SUMPRODUCT: PRODUCT multiplies everything together into one number,SUMPRODUCTmultiplies arrays element by element and then adds the results. - Assuming text in the range errors; PRODUCT ignores it, which can silently exclude a value you thought was counted.
Frequently asked questions
What is the difference between PRODUCT and SUMPRODUCT?
PRODUCT multiplies all values into a single product. SUMPRODUCT pairs up two or more equal-sized ranges, multiplies each pair, then sums the results — a weighted total.
Does PRODUCT ignore empty cells?
Yes, blanks and text are skipped rather than treated as zero, which would otherwise wipe out the result.
How do I compound a series of growth rates?
Convert each rate to a factor (1 + rate), then =PRODUCT(range)-1 gives the compounded total change.