Dapatkan produk dari nomor yang disediakan
=PRODUCT(number1, [number2], ...)
| Parameter | Deskripsi |
|---|---|
number1 |
The first number or range to multiply. |
number2 |
[optional] The second number or range to multiply. |
The PRODUCT function returns the product of supplied arguments:
=PRODUCT(3,8) // returns 24
=PRODUCT(3,8,4) // returns 96
PRODUCT multiplies all numeric values together, so the following formulas are equivalent:
=PRODUCT(A1:A5)
=PRODUCT(A1,A2,A3,A4,A5)
=PRODUCT(A1:A2,A3:A5)
PRODUCT ignores text values and empty cells. The formulas below will return the same result with all cells have numeric values:
=PRODUCT(A1:A5)
=A1*A2*A3*A4*A5