Description
The PRODUCT function multiplies all specified numbers together and returns the result.
Usage
This function is used to calculate the product of one or more numbers.
Syntax:PRODUCT(number1, [number2], …)
Examples
-
Calculate the Product of Impact and Likelihood:
PRODUCT(#[Residual Impact], #[Residual Likelihood])Returns the product of the values in the Residual Impact and Residual Likelihood fields.
-
Multiply Usage Frequency, Criticality, and Count of Unique Records:
PRODUCT(COUNTU(#[Vulnerabilities].[ID]), #[Usage Frequency], #[Criticality])Returns the product of the Usage Frequency, the Criticality value, and the count of unique linked Vulnerabilities records.
Inputs
| Argument | Data Type | Description |
|---|---|---|
| number1 | Number | The first number to multiply. |
| [number2] | Number | (Optional) Additional numbers to multiply. |
Returns
Type: Number
- Produces the product of all specified numbers.