Method
Max
Description
Returns the largest value passed to it.
Usage
result = Max(value1, value2,... valueN)
Part |
Type |
Description |
---|---|---|
result |
The maximum value of value1 to valueN. |
|
value1 |
The first number for comparison. |
|
value2 |
The second number for comparison. |
|
valueN |
Optional: Max requires two parameters but optionally can take more than two. N is the number of parameters passed. |
Notes
The Max function compares two or more numbers and returns the largest of the passed values.
Sample code
This example uses the Max function to return the largest of the values passed
Var d As Double
d = Max(3.01, 4.05) ' returns 4.05
d = Max(3.012, 3.011, 1.56) ' returns 3.012
Compatibility
All project types on all supported operating systems.