Excel PRODUCT Function
Associated Files Download Links
In this Article
This Excel Tutorial demonstrates how to use the Excel PRODUCT Function in Excel to multiply an array of numbers, with formula examples.
PRODUCT Function Description:
The PRODUCT Function Multiplies an array of numbers.
Formula Examples:
Example | Formula | Result |
---|---|---|
1 | =PRODUCT(C5,D5) | 6 |
2 | =PRODUCT(C6:D7) | 120 |
Syntax and Arguments:
The Syntax for the PRODUCT Formula is:
1 |
=PRODUCT(number1,number2) |
Function Arguments ( Inputs ):
number1 – Two or more numbers, separated by commas, or an array of numbers.
Additional Notes
Use the PRODUCT Function to multiply an array of numbers.
Instead of typing:
=a1*a2*a3*a4
you can enter:
=product(a1:a4)
PRODUCT Examples in VBA
You can also use the PRODUCT function in VBA. Type:
application.worksheetfunction.product(number1,number2)
For the function arguments (number1, etc.), you can either enter them directly into the function, or define variables to use instead.
Return to the List of all Functions in Excel
How to use the PRODUCT Function in Excel:
To use the AND Excel Worksheet Function, type the following into a cell:
=AND(
After entering it in the cell, notice how the AND formula inputs appear below the cell:
You will need to enter these inputs into the function. The function inputs are covered in more detail in the next section. However, if you ever need more help with the function, after typing “=PRODUCT(” into a cell, without leaving the cell, use the shortcut CTRL + A (A for Arguments) to open the “Insert Function Dialog Box” for detailed instructions:
For more information about the PRODUCT Formula visit the
Microsoft Website.