MIN
Syntax
MIN (numeric_expression, numeric_expression, ...)
Description
Finds the smallest value in the specified list of numbers.
Arguments
numeric_expression | A number that can be converted to a Double64 number. |
Returns
A numeric value in Double(64) format. A Double32 or Double64 data type represents a 32- or 64- double-byte floating-point number.
Examples
MIN (13.50, 56.75, 200.60)
Returns: 13.50
If your source data contains the following fields and data:
Transaction1 (13.50), Transaction2 (200.60), Transaction3 (56.75)
The following formula returns the same result:
MIN (MyEntity.Transaction1, MyEntity.Transaction2, MyEntity.Transaction3)