Determines the larger of two numbers.
Max ( x, y )
Argument |
Description |
---|---|
x |
The number to which you want to compare y |
y |
The number to which you want to compare x |
The datatype of x or y, whichever datatype is more precise. If any argument’s value is null, Max returns null.
If either of the values being compared is null, Max returns null.
This statement returns 7:
Max(4,7)
This statement returns -4:
Max(- 4, - 7)
This statement returns 8.2, a decimal value:
Max(8.2, 4)
Max method for DataWindows in the DataWindow Reference or the online Help