Purpose
Returns the smaller of two numbers. You can call this function from the MapBasic window in MapInfo Pro.
Syntax
Minimum( num_expr, num_expr )
num_expr is a numeric expression.
Return Value
Float
Description
The Minimum() function returns the smaller of two numeric expressions.
Example
Dim x, y, z As Float
x = 42
y = -100
z = Minimum(x, y)
z now contains the value -100.
See Also:
Maximum() function