This function returns the highest value in a given number list.
Syntax
max(numberList) #Output: Number
Examples
Parser expressionDescription
max([1, 2, 5, 4, 3]) 

This example returns

5

 max(fieldValue({issue.estimate}, linkedIssues("is blocked by")))

This example returns the highest remaining estimate (in minutes) among the blocking issues.

To achieve this, the following functions are used:

Additional information

Parameters used in this function

ParameterInput (data type)Description
numberList

NUMBER LIST

Any given number list.
Output

This function returns a NUMBER


Use cases and examples