min

Use the min function to identify the lowest value of two or more Integer/ Decimal values, or values that make up a Collection.

Function format

min(Input value)

  • Input value: accepts Integer/ Decimal values, or a Collection. Value compared against the other value(s) to determine the lowest value.

min example

  • min(1, 2, 3, 4, 5)
    The formula returns the Integer 1.

  • min(3.25, 6.78, 2.50, 1.25, 2.39)
    The formula returns the Integer 1.25.