Name
Min -- return minimum value (V1.5)
Synopsis
result = Min(a, b, ...)
Function
This function compares a and b and returns the value which is smaller.

New in V2.0: You can pass any number of arguments to this function now. It will always return the minimum value of all input values.

Inputs
a
value a
b
value b
...
any number of additional values
Results
result
minimum value
Example
a = Min(9, 10)
This returns 9.

Show TOC