...
To use a custom field, type its name, for example Budget
or Quantity
. If your field’s name contains spaces or special characters, you must surround it with double quotes, for example “Story Points”
. Quotes are optional for values without spaces or special characters, e. g. "Quantity"
.
Operators
Operators combine two values. The following operators are supported:
Operator | Description | Example |
---|---|---|
| Addition |
|
| Subtraction |
|
| Multiplication |
|
| Division |
|
| Potentiation: Raises the first value to the power of the second, e. g. 28 |
|
| Percentage: As on a calculator, you can add or subtract a percentage to/from a value. |
|
Parentheses
Parentheses can be used to group operations to override operator precedence. 2 * 3 + 3
equals 9, but 2 * (3 + 3)
equals 12.
...
Info |
---|
Jira automatically rounds values to three decimal places. Be careful when you need exact results. |
Mathematical Function | Description | Example | ||
---|---|---|---|---|
| Rounds the passed value to the specified number of significant decimal digits. |
| ||
| Rounds the passed value to the nearest lower integer. |
| ||
| Rounds the passed value to the nearest higher integer. |
| ||
| Gives the absolute value, i. e. the positive value. |
| ||
| Normalises negative values to -1, zero to 0, and positive values to 1. |
| ||
| Calculates the remainder of the dividend when divided by the divisor. |
| ||
Aggregating Function | Description | Example | ||
| Sum of the passed values |
| ||
| Average of the passed values |
| ||
| Smallest of the passed values |
| ||
| Largest of the passed values |
| ||
Relation Function | Description | Example | ||
| Retrieves the values of the passed field from all subtasks. Must be aggregated before using outside of a function. |
| ||
| Retrieves the values of the passed field from the parent of a subtask. |
| ||
| Retrieves the values of the passed field from all issues in an epic. Must be aggregated before using outside of a function. |
| ||
| Retrieves the values of the passed field from the epic of an issue. |
| ||
| Retrieves the values of the passed field from all linked issues. Must be aggregated before using outside of a function.
|
|
Advanced
More complex use cases
...