Excel PRODUCT Function Explained: Everything You Need to Know
If you've ever stared at a column of numbers and wondered, “What’s the fastest, cleanest way to multiply all of these together?” — you’re in the right place. I remember the first time I built an invoice spreadsheet for a small project: 12 line items, quantities, and unit prices. I multiplied each row by hand, copied formulas, and cussed quietly at Excel. Then I discovered the Excel PRODUCT function, and felt like someone had handed me a tiny automation wand. In this post I’ll walk you through what PRODUCT does, when it’s better than the * operator, and a bunch of real-world tips for multiplying in spreadsheets without headaches.
What is the Excel PRODUCT function?
Simply put, the PRODUCT function multiplies numbers. Instead of typing =A1*A2*A3, you can write =PRODUCT(A1:A3) and get the same result — often with less typing and fewer errors.
Basic syntax:
=PRODUCT(number1, [number2], ...)
You can pass individual cells, ranges, or a mix of both. PRODUCT multiplies all numeric values in the arguments; non-numeric values (like plain text or empty cells) are ignored.
PRODUCT vs. the * operator — when to use which
Both achieve multiplication, but they’re useful in different situations:
-
Use the
*operator for simple, explicit arithmetic:=A1 * B1This is perfect when you're multiplying two or three distinct values.
-
Use PRODUCT when you need to multiply a long range, or several ranges at once:
=PRODUCT(A1:A10) =PRODUCT(A1:A5, C1:C5, 2)PRODUCT shines when multiplying cells in Excel across ranges—less error-prone and visually cleaner.
Think of * as a calculator key and PRODUCT as a “multiply this whole group” button.
A friendly example (so it actually sticks)
Suppose you have three cells:
-
A1 = 2
-
A2 = 3
-
A3 = 5
Both of these produce the same result:
=A1*A2*A3 -> 30
=PRODUCT(A1:A3) -> 30
If your sheet has blank cells, PRODUCT simply ignores them, which is handy when cleaning or incomplete data doesn’t break your calculation.
Common use cases in the real world
-
Invoices & quotes: Multiply quantity × unit price across many lines, then combine with SUM for grand totals.
-
Growth models: Multiply growth factors for compounded results.
-
Unit conversions: Multiply an entire column by a conversion factor without extra helper columns.
-
Inventory & BOMs: Quickly get total multipliers across multiple components.
If you’re doing any routine multiplication in Excel work, PRODUCT can make your formulas shorter and easier to read.
Handling zeros, blanks, and errors
One gotcha: if any number in the range is zero, the entire product is zero. That’s normal arithmetic — but sometimes that zero is a placeholder or an error.
Tip: If you want to ignore zeros (e.g., treat them as “not applicable”), use FILTER (Excel 365/2021+) or an array-style approach.
Example (Excel 365+):
=PRODUCT(FILTER(A1:A10, A1:A10<>0))
Older Excel:
=PRODUCT(IF(A1:A10<>0, A1:A10))
In older Excel versions you’d enter the IF version as an array formula (Ctrl+Shift+Enter). Newer Excel handles dynamic arrays automatically.
If a referenced formula returns an error (like #DIV/0!), PRODUCT will propagate that error. So clean up or trap errors with IFERROR where needed:
=IFERROR(PRODUCT(A1:A10), "Check inputs")
PRODUCT and text, logical values, and non-number stuff
PRODUCT focuses on numeric values. Plain text in a referenced cell is ignored — it won’t break the multiplication. However, if a referenced cell contains an Excel error (e.g., #VALUE!), that will bubble up. If you mix booleans or formulas that return non-numeric types, be mindful: PRODUCT only multiplies numbers.
Combining PRODUCT with other functions — practical patterns
-
Multiply a range then add tax:
=PRODUCT(A1:A5) * (1 + B1) // B1 = tax rate -
Multiply several ranges and a constant:
=PRODUCT(A1:A4, 1.2) // scales result by 1.2 -
Multiply and then sum different groups:
=SUM(PRODUCT(A1:A3), PRODUCT(B1:B3)) -
Not to confuse with SUMPRODUCT (they’re different):
SUMPRODUCTmultiplies corresponding elements across arrays and sums the results. Use SUMPRODUCT for weighted sums, PRODUCT for pure multiplication of items.
Troubleshooting checklist — when multiplication doesn’t behave
If your formula isn’t giving the expected result, try this:
-
Check for zeros — any zero yields zero.
-
Look for errors —
#VALUE!,#N/A, etc., will break PRODUCT. -
Confirm data types — numbers stored as text won’t always behave as expected. Use
VALUE()or--if you need to coerce text numbers:=PRODUCT(VALUE(A1:A5)). -
Spaces and nonprinting characters — they can make numeric-looking values text. Use TRIM or CLEAN if needed.
-
Version differences — modern functions like FILTER require newer Excel versions. For older Excel, use array formulas.
Quick answers to reader questions
-
How do I do multiplication in Excel?
Use*for specific cells (e.g.,=A1*B1) orPRODUCTfor ranges (e.g.,=PRODUCT(A1:A10)). -
How to multiply in Excel across many cells?
=PRODUCT(range)— it’s the easiest way to multiply many cells at once. -
What’s the simplest way for multiplying cells in Excel?
If it’s two cells:=A1*B1. If it’s a long column:=PRODUCT(A1:A100).
Pro tips from my spreadsheet trenches
-
Name your ranges (Formulas → Define Name).
=PRODUCT(Prices)looks nicer than=PRODUCT(B2:B50). -
Use helper cells sparingly — PRODUCT reduces the need for many intermediate multiplications.
-
When sharing sheets with non-tech folks, prefer explicit
*for clarity on two-cell multiplications; use PRODUCT for bulk operations and document the intent with a comment.
Conclusion — tiny function, big payoff
The Excel PRODUCT function is one of those small tools that quietly makes your life easier when you’re doing repeated arithmetic. Whether you’re an analyst, a freelancer building invoices, or someone learning how to multiply in Excel for the first time, PRODUCT saves time and declutters your formulas. Try it next time you find yourself typing =* across dozens of cells — your future self will thank you.
Want a quick challenge? Open a sample invoice and replace row-by-row = formulas with a PRODUCT that multiplies the ranges — then share what surprised you. I’d love to hear how it goes.
- Cars & Motorsport
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Spellen
- Gardening
- Health
- Home
- Literature
- Music
- Networking
- Other
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
- IT, Cloud, Software and Technology