Status
Tech review

Style guide




Short description

Returns the number of numeric, text, or issue values in l.

Output

Available since




Supported list types


Number list

This function returns the number of numeric values in l.


count(number list l) #Output: Number



Parser expressionDescription


append([1, 1, 2, 2])


This example returns the number 4


count(subtasks()) - count(fieldValue({00012}, subtasks())) 


This example returns the number of sub-tasks with field "Due Date" unset.



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.



This function returns a




This function returns the number of times n appears in l.


count(number n, number list l) #Output: Number



Parser expressionDescription


count(1, [1, 1, 2, 2, 1, 0]


This example returns the number 3



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.
xxx

Parameter description.



This function returns a



Text list

This function returns the number of text values in l.


count(string list l) #Output: Number



Parser expressionDescription


count(["blue", "red", "blue", "black"])


This example returns the number 4


count(distinct(fieldValue(%{00094}, subtasks())))


This example returns the number of components selected among all sub-tasks.



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.



This function returns a




This function returns the number of times s appears in l.


count(string s, string list l) #Output: Number



Parser expressionDescription


count("blue", ["blue", "blue", "red", "red", "blue", "green"])


This example returns the number 3



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.
xxx

Parameter description.



This function returns a



Issue list

This functions returns the number of issues in l.


count(issue list l) #Output: Number



Parser expressionDescription


count(filterByResolution(linkedIssues("is blocked by"), ""))


This example returns the number of non-resolved blocking issues.



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.



This function returns a