+1 888 340 6572

MaxList: Difference between revisions

From MultiCharts
(Created page with "Returns the value of the greatest of the specified numerical expressions. ==== Usage ==== <syntaxhighlight>MaxList(Value1,Value2,Value3, etc.)</syntaxhighlight> Where: [[...")
 
m (Reverted edits by 176.8.90.7 (talk) to last revision by JoshM)
 
(2 intermediate revisions by 2 users not shown)
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.   


==== Usage ====
== Usage ==
<syntaxhighlight>MaxList(Value1,Value2,Value3, etc.)</syntaxhighlight>  
<syntaxhighlight>MaxList(Value1, Value2, Value3, etc.);</syntaxhighlight>  


Where: [[Value1, Value2, Value3, etc.]] - numerical expressions  
Where:  
 
:'''Value1''', '''Value2''', '''Value3''', etc. - numerical expressions.
   
   
==== Example ====
== Example ==
<syntaxhighlight>MaxList(-5,0,12,7) will return a value of 12</syntaxhighlight>
<syntaxhighlight>MaxList(-5, 0, 12, 7);</syntaxhighlight>
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.
   
   
[[Category:Math and Trig]]
[[Category:Math and Trig]]

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.