PRODUCT function. Perform multiplication.(Microsoft Excel)

Japanese version.

The PRODUCT function is a companion to the SUM function.

While the SUM function adds, the PRODUCT function is used in a similar way to multiply.

How it works

=PRODUCT(Number1 to 255)
NameOmissionSpecify
Number1 to 255Only 1 is required.Target value.

Example Results

Specify cell range.

Basically, a range of cells is specified.

Mixing of non-numeric characters.

If non-numeric characters such as alphabetic characters are mixed in, non-numeric characters are ignored and calculated.

Numbers treated as characters are also ignored.

0 and blank cells.

Zeros are included in the calculation, while blanks are ignored.

Zero.
Blank.

Error value

If an error cell is mixed in, the PRODUCT function will also result in an error.

This should be noted when including the results of XLOOKUP and VLOOKUP functions in the calculation.

Specify other than cell range.

It is also possible to return a range of cells as the result of a function argument. In this case, the product value is taken from the result of the function.

=PRODUCT(NUMBERVALUE(TEXTSPLIT("1,2,3,4",",")))

List of functions that result in a range of cells.

FunctionCategoryDescription
TEXTSPLITTextDivides text into cells based on a specified character.
XLOOKUPLookup & ReferenceGet data matching the search value.
FILTERLookup & ReferenceGet a list of data that matches the condition.
UNIQUELookup & ReferenceDelete duplicate data in a specified cell range.
SEQUENCELookup & ReferenceCreate sequential numbers in multiple cells.
SORTLookup & ReferenceSort a range of cells by a specified column.
SORTBYLookup & ReferenceSort a cell range by specifying multiple reference columns.
DROPLookup & Referenceelete a specified number of rows and columns from a specified cell range.
TAKELookup & ReferenceObtains a specified number of rows and columns from a specified cell range.
TOCOLLookup & ReferenceArranges a specified range of cells in a single column.
TOROWLookup & ReferenceSort a specified range of cells into a single column.
EXPANDLookup & ReferenceExtended specified cell range.
CHOOSEROWSLookup & ReferenceGet the row at the specified position from the specified cell range.
CHOOSECOLSLookup & ReferenceGet the column at the specified position from the specified cell range.
WRAPROWSLookup & ReferenceSort a range of cells in a single column or row by a specified number of rows.
WRAPCOLSLookup & Reference
Sort a range of cells in a column or row by a specified number of columns.
VSTACKLookup & ReferenceMerge multiple cell ranges in row direction.
HSTACKLookup & ReferenceMerge multiple cell ranges in column direction.
TRANSPOSELookup & ReferenceCreate a cell range with the rows and columns of the specified cell range swapped.

It can also be specified as an array.

=PRODUCT({1,2,3,4})

Multiple values can also be specified simply by separating them with commas.

=PRODUCT(1,2,3,4)

Multiple cells can be specified by separating them with commas.

Spill

Spill when using the BYROW or BYCOL function.

=BYROW(A1:C3,LAMBDA(r,PRODUCT(r)))
Row direction.
=BYCOL(A1:C3,LAMBDA(c,PRODUCT(c)))
Column direction.

---

Links

Microsoft Excel Functions Math & Trig