$multiply

Function $multiply returns the product of all given number.
Syntax
    $multiply{numeric_value_1}{numeric_value_2} ... {numeric_value_n}
DocumentationFunction $multiply returns the product of all given number.

    Parameters:
      numeric_value_1 through numeric_value_n, the numeric decimal values to be multiplied.
    Returns:
      the floating point value of the expression (numeric_value_1 * numeric_value_2 * ... * numeric_value_n)
    Throws:
      java.lang.NumberFormatException if any of the arguments can not be intepreted as decimal numbers.
Examples
Multiply:

    $// The value of the variable product should be 2000
    set{product}{$multiply{100}{2}{10}}
GroupMath
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters <unlimited>