$min calculates the minimum from a list of values.
Tooltip
Syntax: $min(a[,b[,c[...]]])
Parameter
Description
aA value (e.g. '5'), a list (e.g. $el(3,true)) or a reference to a value (e.g. $el(3)).
other parametersOther numerical values.
Returns the numerically smallest value in the list of parameters.
Example: $min(5,-6,3) – returns -6
Syntax
$min(a [, b[, c[...]]])
Parameter
Name | Description |
|---|---|
a | A value (e.g. ' 5 '), a list (e.g. $el(3,true) ) or a reference to a value (e.g. $el(3) ). |
Other parameters | Other numerical values. |
Return value
The numerically smallest value in the list of parameters.
Example
Syntax | Result |
|---|---|
$min(2, 5, 7) $min($el( 28, true) ) | 2 The numerically smallest value of the elements of the repeating element with the Id 28. |