PRODUCT

    Math & Trig

    Multiplies all the numbers given as arguments and returns the product.

    Translations
    EnglishPRODUCT
    FrenchPRODUIT
    SpanishPRODUCTO
    GermanPRODUKT
    ItalianPRODOTTO
    PortugueseMULT
    DutchPRODUCT
    PolishILOCZYN
    RussianПРОИЗВЕД
    TurkishÇARPIM
    CzechSOUČIN
    HungarianSZORZAT
    SwedishPRODUKT
    DanishPRODUKT
    FinnishTULO
    Syntax
    PRODUCT(number1, [number2], ...)

    Arguments

    • number1First number or range
    • number2Additional numbers(optional)
    Examples
    =PRODUCT(2,3,4)
    24

    2 x 3 x 4

    =PRODUCT(A1:A5)
    All multiplied

    Product of range

    =PRODUCT(1+Rates)
    Compound growth

    Compound multiple rates

    Tips & Best Practices
    • Empty cells and text are ignored
    • Useful for compound growth calculations
    • Equivalent to multiplying all values together
    Common Mistakes
    • Assuming PRODUCT ignores empty cells the way SUM does - it actually does ignore them (treats them as if absent, not as zero), but people sometimes assume the opposite and expect a result of 0 when a range includes blanks
    • Using PRODUCT on a range that includes text, expecting it to multiply through and ignore it - text is genuinely ignored, but a single 0 anywhere in the range will still zero out the entire result
    • Manually multiplying cells with the * operator across a long list instead of using PRODUCT, making the formula far longer and harder to maintain than necessary
    Related Functions
    SUMAdds values instead of multiplying them, sharing the same basic 'aggregate a range' structure as PRODUCT.
    SUMPRODUCTMultiplies corresponding elements of arrays together and then sums the results, a very different operation despite the similar name.
    POWERMultiplies a single value by itself repeatedly, useful when the same number needs to be part of a PRODUCT-style calculation.
    Frequently Asked Questions

    Does PRODUCT ignore empty cells?

    Yes, empty cells are skipped entirely rather than treated as zero - only an actual 0 in the range will zero out the whole result.

    Why did my PRODUCT formula return 0?

    One of the cells in the range genuinely contains a 0 (or evaluates to it) - since multiplying by zero always gives zero, a single 0 anywhere in the range zeroes out the entire result.

    Is PRODUCT the same as SUMPRODUCT?

    No, despite the similar name - PRODUCT simply multiplies all the values in a range together, while SUMPRODUCT multiplies corresponding elements across multiple arrays and then adds up those results.

    Need to translate a formula using PRODUCT?

    Use our translator to convert your complete formula