Quick Answer

PRODUCT Function

Multiplies together all supplied numbers.

✓ Excel✓ Google SheetsExcel All versions

Syntax

PRODUCT
(number1, [number2], ...)

Parameters

ParameterDescriptionRequired
number1The first number, range, or cell reference to multiply.Required
number2Additional numbers, ranges, or references (optional). Up to 255 arguments.Optional

Basic Example

Multiply a few values

=PRODUCT(2, 3, 4)
Result24

2 × 3 × 4 = 24.

Advanced Examples

Example 1: Multiply an entire range

Product of cells A1:A3 containing 2, 3, 4.

Reference a range directly.

=PRODUCT(A1:A3)
Result: 24
PRODUCT multiplies every numeric cell in the range; text and blanks are ignored.

Example 2: A zero anywhere zeroes the product

Mixed values including 0.

Show the effect of a zero factor.

=PRODUCT(2, 0, 5)
Result: 0
Any factor of 0 makes the whole product 0.

How PRODUCT Works

PRODUCT multiplies all numeric values across its arguments. Empty cells, text, and logical values in ranges are ignored, but explicitly typed TRUE/FALSE and numbers are multiplied. Supplying zero yields zero.

1
Select the cell
Click the cell for the product.
2
Enter the formula
Type =PRODUCT(number1, [number2], ...).
3
Press Enter
The multiplied result appears.

Important Notes & Limitations

  • Empty cells, text, and logical values inside ranges are ignored (unlike explicitly entered TRUE/FALSE).

  • A single zero factor makes the entire product zero.

  • Extremely large products overflow to #NUM!.

Common Errors & Fixes

#NUM!The product is too large to represent.

Fix: Use logarithms (EXP(SUMPRODUCT(LN(range)))) or scale the inputs.

Result is 0 unexpectedlyA zero is present in the data.

Fix: Inspect the range for zeros or use an array formula that excludes them.

Download Practice File

Practice PRODUCT with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the PRODUCT function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

Does PRODUCT ignore text and blanks?
Yes, within ranges text and empty cells are ignored, so they don't contribute a zero.
How is PRODUCT different from multiplying with *?
PRODUCT can take ranges and many arguments at once and skips non-numeric cells, while * requires each operand explicitly.
What happens with a zero in the range?
The entire product becomes 0, since multiplying by zero yields zero.