/
MATH_MULT ()

MATH_MULT ()

MATH_MULT(factor [, factor, ...])

Calculates the product of a list of factors

If a null factor is provided, it will be ignored.

Input Parameters

Parameter

Type

Default

Required

Description

Parameter

Type

Default

Required

Description

factor

Number/Array

 

Yes

Numeric value to multiply. The parameter can be repeated an indefinite number of times.

The function also admits passing an array of numbers as parameter

Execution

Always. Calculated on-the-fly whenever an ITEM of a FORM is changed (by means of form_set_answer(), or when the FORM is opened

Examples

Formula

Description

Formula

Description

MATH_MULT(12, 2, 10)

Result = 240

MATH_SUM([12, 2], 10])

Result = 240

MATH_SUM(ADMISSION.DATA.INTEREST)

Multiplies the values returned by the OBJECT CODE “ADMISSION.DATA.INTEREST” (all ITEMS with DATA_CODE=”INTEREST”).

Note that the OBJECT CODE can return an array of values



Related content