Product Function

Description:
Returns the product of a list of numbers.
Returns:
Number
Parameter:
Parameter
Data Type
Description
1
Number*
The list.
Examples:
When using functions inside a field, remember the field brackets:
{Product(VariableName)}
To use this with a repeated variable, use Collect to generate the list:
{Product(Collect(VariableName)}
Expression
Result
Product( List(2.5,3.5,5) )
43.75
Product( List() )
1

Related content