Ver.12.0.1 MinValue, MaxValue, MinObject, MaxObject, MinObjectIF, and MaxObjectIF were added to the internal functions.

MinValue, MaxValue, MinObject, MaxObject, MinObjectIF, and MaxObjectIF were added to the internal functions.
MinValue and MaxValue return the smaller and larger value of two values, respectively.
This enables a relation such as "the later of the due date or scheduling basis time" in the following manner.
  If MaxValue is not used :
    IF(ME.LET<PROJECT.BasisTime,ME.LET,PROJECT.BasisTime)
  If MaxValue is used :
    MaxValue(ME.LET,PROJECT.BasisTime)
MinObject, MaxObject, MinObjectIF, and MaxObjectIF return an object.
This enables, for example, to obtain the order whose start time is the earliest among rightmost orders.
    MinObject(ME.Rightmost orders,TARGET.Start time)
Asprova HELP
  -> http://lib.asprova.com/onlinehelp/en/AS2003HELP00741570.html
  -> [Expression and Internal Functions]-[Internal Functions]-[Minimum/Maximum/Sum] – HelpNo.:741570