User Tools

Site Tools


syntax:functions:max

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
syntax:functions:max [2019/10/16 15:05] dmitrysyntax:functions:max [2021/08/11 15:25] (current) – [Examples] craigt
Line 1: Line 1:
-===== Max(numbernumber) =====+====== Max(number1number2) =====
 +Category:  Number function
  
-The maximum of two numbers.+\\  
 +=====Description===== 
 +This function returns the largest of two numbers.
  
- Example   Result  +\\  
-max( 10, 20)   20 +=====Arguments===== 
-max( 171, 238)   238 |+^Argument^Type^Description
 +|number1|Number|The value to be compared to //number2//.
 +|number2|Number|The value to be compared to //number1//.| 
 +\\  
 +**Return value type:**  Number
  
-=== See also === +\\  
-  * [[syntax:functions:min]]+=====Remarks===== 
 +Use nested Max() functions to compare more than two values at a time.  See the last two examples below. 
 + 
 +\\  
 +=====Examples===== 
 + 
 +  max(10, 20) //Returns 20 
 + 
 +  max(171, 238) //Returns 238 
 + 
 +  max(1, -1) //Returns 1 
 + 
 +  max(max(8,4),12) //Returns 12  (Returns the max of the 3 values 8, 4, and 12.) 
 + 
 +  max(max(10, 40), max(25, 75)) //Returns 75  (Returns the max of the 4 values 10, 40, 25, and 75.) 
 + 
 +\\  
 +===== See also ===== 
 +  * [[syntax:functions:min|Min(number1, number2)]]
syntax/functions/max.1571252737.txt.gz · Last modified: 2019/10/16 15:05 by dmitry

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki