Difference between revisions of "NXSL:max"

From NetXMS Wiki
Jump to navigation Jump to search
m (Text replacement - "^" to "{{deprecated}}")
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
__NOTOC__
{{deprecated}}__NOTOC__
Returns maximal value from a list of values.
Returns maximal value from a list of values.


Line 10: Line 10:
== Parameters ==
== Parameters ==


:{|
:{| class="wikitable"
|-
|-
| ''numbers'' - separated by comma
| ''numbers'' || separated by comma
|}
|}



Latest revision as of 18:13, 13 September 2022

This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide)

Returns maximal value from a list of values.


Syntax

max(number1 [,number2] [,number n]);


Parameters

numbers separated by comma


Return Value

Maximal value of numbers.


Examples

max(2, 3, 4, 8)	->	8