Method

Max


Description

Returns the largest value passed to it.

Usage

result = Max(value1, value2,... valueN)

Part

Type

Description

result

Double

The maximum value of value1 to valueN.

value1

Double

The first number for comparison.

value2

Double

The second number for comparison.

valueN

Double

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.

See also

Abs, Ceiling, Exp, Floor, Min, Pow, Sqrt functions.