Back to List
Placeholder | Replace With |
num | A number value, such as a Number variable |
num | A number value, such as a Number variable (These values can be in any order.) |
The MIN expression compares two number values and returns the lesser of the two.
In the following number computation, the expression compares the two values, ShippingCosts and LaborCosts, and returns the lesser of the two values:
min( ShippingCosts, LaborCosts )
Back to List