&MAX

Finds and holds the highest number in a set of signed numeric arguments.
Restriction: This topic applies only when the AppMaster Builder AddPack has been installed, and applies only to Windows platforms.

Syntax:

&MAX (number, number, ...)

Aliases:

&max (number, number, ...)
&Max (number, number, ...)

Comments:

  • Character strings are acceptable arguments if they can be converted to numeric types.
  • There is no limit on the number of arguments.

Examples:

&MAX (-25, 1)  = 1
&MAX (25, 1)  = 25
&MAX (25, 1, 101)  = 101
&MAX (25, 1, "101")  = 101