All standard aggregate functions and available modifiers are listed on this page.

An aggregate function call contains an expression in curly braces ("{}"), which is calculated for the item and all sub-items (or, in some cases, for another subset of related items in the structure), and then the resulting values are aggregated according to the meaning of the aggregate function.

Aggregation Functions

ARRAY

Produces an array of the defined values for the item and/or its sub-items

Accepts modifiers: #ancestors#children#leaves#strict#subtree#fromLevel, #toLevel, #reverse#distinct (does not include duplicate values), #flatten (if function produces an array, includes the inner values, rather than the array), #compact 

AVG

Avg calculates an average of the defined values for the item and/or its sub-items. The result for avg is generally the same as sum/count. It returns nothing if there are no defined values for {x}.

If a certain issue (or another kind of item) is included multiple times in the sub-tree, the average value will include the value for that issue only once. This behavior can be overridden by using the #all modifier.

Accepts modifiers: #all#children#leaves#strict#subtree, #preceding#levels (together with #preceding), #baseLevel (together with #preceding).

COUNT

Count calculates a count of defined values (or truthy values, if the #truthy modifier is specified) for the item and/or its sub-items.

If a certain issue (or another kind of item) is included multiple times in the sub-tree, it will be counted only once. This behavior can be overridden by using the #all modifier.

Accepts modifiers: #all#children#leaves#strict#subtree#truthy, #preceding#levels (together with #preceding), #baseLevel (together with #preceding).

JQL

Returns true if the current row is an issue and it matches this JQL. 

This is not an aggregate function; it's an embedded query. We've included it here because it's easy to mistake for an aggregate function - both use curly braces { }. 

To learn more, see Embedded Queries.

JOIN

Join concatenates (joins) strings from the item and its parents (or other items, if modifiers are used).

Accepts modifiers: #ancestors#subtree#children#leaves#strict#reverse#separator#beforeChildren#afterChildren#fromLevel#toLevel, #distinct.

MAX

Max returns the maximum defined value for the item and/or its sub-items. Numeric, date, duration and text fields can be compared. Text fields are compared lexicographically.

If the formula produces an array, this will find the maximum element within that array.

Accepts modifiers: #children#leaves#strict#subtree.

MEDIAN

Produces the median value. Works the same as PERCENTILE#0.5.

Undefined are ignored. Non-number values result in an error.

Accepts modifiers: #ancestors#children#leaves#strict#subtree#fromLevel#toLevel

MIN

Min returns the minimum defined value for the item and/or its sub-items. Numeric, date, duration and text fields can be compared. Text fields are compared lexicographically.

If the formula produces an array, this will find the minimum element within that array.

Accepts modifiers: #children#leaves#strict#subtree.

PARENT

Parent extracts the value from the parent row or from an ancestor row by a specified level.

Using the #level modifier, you can specify which row to extract the value from:

Accepts modifier: #level

PERCENTILE

Calculates a percentile value from the defined values for the item and/or its sub-items. The hierarchy of values is ignored – all subject values are treated equally.

Must include the modifier #p, followed by the desired percentile (p=0.95, p=95). p=1 interpreted as 1%.

Undefined are ignored. Non-number values result in an error.

Accepts modifiers: #ancestors#children#leaves#strict#subtree#fromLevel#toLevel, #p (required)

QUARTILE1

Works the same as PERCENTILE#0.25.

Undefined are ignored. Non-number values result in an error.

Accepts modifiers: #ancestors#children#leaves#strict#subtree#fromLevel#toLevel

QUARTILE3

Works the same as PERCENTILE#0.75.

Undefined are ignored. Non-number values result in an error.

Accepts modifiers: #ancestors#children#leaves#strict#subtree#fromLevel#toLevel

SJQL

Returns true if the current row matches this S-JQL.

This is not an aggregate function; it's an embedded query. We've included it here because it's easy to mistake for an aggregate function - both use curly braces { }. 

To learn more, see Embedded Queries.

SUM

Sum calculates a numerical total for the values calculated for the item and/or its sub-items. 

Other variations of SUM allow different types of aggregation:

Note that when the value of the expression under aggregation is not numeric (and cannot be converted to a number), it is ignored.

If a certain issue (or another kind of item) is included multiple times in the sub-tree, the sum will include the value for that issue only once. This behavior can be overridden by using the #all modifier.

Accepts modifiers: #all#children#leaves, #preceding#strict#subtree#levels (together with #preceding), #baseLevel (together with #preceding).

VALUES

Produces an array of all distinct values for the item and/or its sub-items.

If a value is an array, considers each value in the array separately.

Accepts modifiers: #ancestors#children#leaves#strict#subtree#fromLevel#toLevel

Aggregation Modifiers

#afterChildren

Defines the exit separator between children and parent rows. This modifier has a string parameter. The default exit separator is:


JOIN#subtree#beforeChildren="<{"#afterChildren="}>"{X}




Can be used with: join.

#all

Tells the aggregate function to include duplicate items. By defaults, functions that count values ignore duplicate items.


SUM#all{X}
COUNT#all{X}



Can be used with: sumcountavg.

#ancestors

Only process ancestors of the current row. This is the default behavior for join.

Can be used with: arrayjoinmedianpercentilequartile1quartile3values.

#baseLevel

Can be used with SUM with the #preceding modifier to specify at which level the accumulation will be reset and start over from zero. This allows for accruing independent cumulative values in different sub-trees.

Can be used with: avg, countsum (together with #preceding).

#beforeChildren

See #afterChildren.

#children

Only process direct children of the current row.


JOIN#children{X}
SUM#children{X}




Can be used with: arraysumcountavgjoin, min, max, medianpercentilequartile1quartile3values.

#compact

Ignores undefined values when collecting an array.

This modifier is implicitly turned on by applying the  #distinct modifier to the join aggregate function.

Can be used with: array.

#depth

Same as #level modifier.

#distinct

#distinct with ARRAY

Makes array only produce an array of distinct values. A duplicate value won't be added more than once if this modifier is on.



ARRAY#distinct{X}



#distinct with JOIN

Makes join only concatenate distinct values. A duplicate value won't be added more than once if this modifier is on. When used with arrays, removes undefined values and performs one-step flattening.

Modifiers #beforeChildren and #afterChildren don't work when this option is on. 


JOIN#distinct{X}
JOIN#subtree#distinct{X}



JOIN#distinct{array}



Can be used with: join.

#flatten

When collecting values from sub-items (or another subset of related items) if a value is an array, includes all the elements instead of just including the array.

This modifier is implicitly turned on by applying the  #distinct modifier to the join aggregate function.

Can be used with: array.

#fromDepth

Same as #fromLevel.

#fromLevel

Specifies the position of the first row the aggregate function should take as input for a sequence.

Position is specified by an integer parameter denoted as n below:

This modifier does not work with any tree types except #ancestors.


JOIN#fromLevel=-1{X}
JOIN#fromLevel=2 {X}



Can be used witharrayjoinmedianpercentilequartile1quartile3values.

#leaves

Only process leaves (items without children) in the subtree of the current row.


JOIN#leaves{X}
SUM#leaves{X}



Can be used with: arraysumcountavgjoin, min, max, medianpercentilequartile1quartile3values.

#level

When used with PARENT, specifies the position of the parent that possesses value. 

Position is specified by an integer parameter denoted as n below:

When used with SUM with the #preceding modifier, this specifies the level at which the values should be aggregated.


PARENT#level=-1{X}   // default one
PARENT#level=-2{X}   // "grandparent"
PARENT#level=1 {X}   // root row
PARENT#level=2 {X}



Can be used with: parentsum (together with #preceding), count (together with #preceding), avg (together with #preceding).

#levels

Can be used with SUM with the #preceding modifier to specify at which levels should the accrual of the values happen. 

Note that if you use the #baseLevel modifier, only values at levels that are deeper than the base level will be counted.

You can also use #level instead of #levels.

Can be used with: avgcountsum (together with #preceding).

#preceding

Can be used with SUM to calculate a numeric total of the current item and all items above it in the structure.

Can be combined with the following modifiers:

preceding modifier


SUM#preceding{X}
SUM#preceding#baseLevel=1{X}
SUM#preceding#levels="1,3"{X}



Can be used with: sum.

#reverse

Reverses the order of row processing.


JOIN#reverse{X}



Can be used with: arrayjoin.

#separator

Defines the separator for string joining. This modifier has a string parameter. The default is ", ".


JOIN#separator="->"{X}



Can be used with: join.

#strict

Do not process the current row item as part of the aggregation.

Cannot be used together with #children, #ancestors or #leaves, since these already exclude the current row.


JOIN#strict{X}
SUM#strict{X}



Can be used with: arraysumcountavgjoin, min, max, medianpercentilequartile1quartile3values.

#subtree

Process the whole subtree of the current row. This is the default behavior for sumcountavgminmax.


JOIN#subtree{X}



Can be used with: arraysumcountavgjoinminmax, medianpercentilequartile1quartile3values.

#toDepth

Same as #toLevel.

#toLevel

Specifies the position of the last row the aggregate function should take as input for a sequence.

Position is specified by an integer parameter denoted as n below:

This modifier does not work with any tree types except #ancestors.


JOIN#toLevel=-1{X}
JOIN#toLevel=2 {X}



Can be used with: arrayjoinmedian, percentile, quartile1, quartile3, values.

#truthy

Only count row if the subexpression produces a truthy value .


COUNT#truthy{X}



Can be used with: count.