Workflow Min/Max Functions
A minimum or maximum function finds the smallest and largest value of a set of values. Use Min/Max functions with Number data types only.
Min
Min(v0, v1,..., vn)
: Returns the minimum value from the list.
Example
Min(15, 180, 7, 13, 45, 2, 13)
returns 2.
Max
Max(v0, v1,..., vn)
: Returns the maximum value from the list.
Example
Max(15, 180, 7, 13, 45, 2, 13)
returns 180.