Skip to content
Google Sheets

PRODUCT function in Google Sheets

Returns the result of multiplying a series of numbers together.

=PRODUCT(factor1, [factor2, ...])

PRODUCT syntax and parameters

Two arguments, one required.

  • factor1anyRequired

    The first number or range to calculate for the product.

  • factor2anyRepeating

PRODUCT examples

Formulas you'll actually reuse.

  1. A column of factors multiplied — e.g. chained growth rates:

    =PRODUCT(B2:B5)

    Result1.2155

  2. Price × (1 − discount) × (1 + tax) in one call:

    =PRODUCT(B2, 1 - C2, 1 + D2)

    Result23.79

PRODUCT in Excel

Same name — your formula ports as-is.

Try PRODUCT in the playground

Edit the example — nothing to install.

Preloaded with the PRODUCT formula from Example 1 — change anything and watch it respond.

Loading the editor…