Skip to content

Divide

aggregating category: arithmetic no `||`

Divides a dividend by all subsequent values or all available inputs.

Divides the first parameter (the dividend) by all remaining parameters in order. With no additional parameters, the dividend is divided by all available inputs.

Parameters

1dividend Mandatory — accepts: field, INT, FLOAT

The dividend of the division. May be a field reference or a static value.

Ndivisors Optional — accepts: field, INT, FLOAT

The Nth divisor that the dividend is divided by. May be a field reference or a static value.

Input type

  • FLOAT
  • INT

Output type

  • FLOAT

Examples

Divide the dividend by all available inputs

Divide(:dividend)

Divide the dividend by two specific divisors

Divide(:dividend, :divisor1, :divisor2)

Divide a field by a static value

Divide(:dividend, 10)

Mixed static and field divisors

Divide(:dividend, 3.14, :divisor2)

See also

Multiply, Add, Subtract