Difference between revisions of "MaxList"

From MultiCharts
Jump to navigation Jump to search
m (Reverted edits by 176.8.90.7 (talk) to last revision by JoshM)
 
Line 1: Line 1:
 
Returns the value of the greatest of the specified numerical expressions.   
 
Returns the value of the greatest of the specified numerical expressions.   
  
http://www.buyxanaxonlinepill.com/ xanax online - order xanax no rx
+
== Usage ==
 +
<syntaxhighlight>MaxList(Value1, Value2, Value3, etc.);</syntaxhighlight>
  
 +
Where:
 +
 +
:'''Value1''', '''Value2''', '''Value3''', etc. - numerical expressions.
 +
 
== Example ==
 
== Example ==
 
<syntaxhighlight>MaxList(-5, 0, 12, 7);</syntaxhighlight>
 
<syntaxhighlight>MaxList(-5, 0, 12, 7);</syntaxhighlight>

Latest revision as of 13:12, 13 February 2012

Returns the value of the greatest of the specified numerical expressions.

Usage

MaxList(Value1, Value2, Value3, etc.);

Where:

Value1, Value2, Value3, etc. - numerical expressions.

Example

MaxList(-5, 0, 12, 7);

Will return a value of 12.

Notes

  • See MaxList2 to return the highest value of the specified numerical expressions.
  • See NthMaxList to return the Nth highest value of the specified numerical expressions.