This article is for Data Center. Visit Cloud
Sample Formulas - Issue Links and Subtasks
Show linked issues
Displays issues linked to the current issue.
issueLinks.MAP(IF($.source = this, $.destination, $.source))
Show issue links
Displays issue links containing the current issue. Ex. STR-006 → GANTT-002
issueLinks.MAP($.source.key CONCAT '→' CONCAT $.destination.key)
Show issues blocking the current issue
Displays issue links for all blockers.
WITH _format(issue) = """[${issue.key}|${issue.url}]""" :
issuelinks
.FILTER($.type = 'Blocks' AND $.destination = this)
.MAP(_format($.source))
Make sure to set the column Options to Wiki Markup.
Want to display another link type? Change: $.type = 'Blocks'
Check whether all blocking issues are resolved
Displays "OK" if all issues linked via the "Blocks" link type are marked as resolved.
Show parent issue
Displays the parent issue of the current item, based on the "is parent of" link.
Depending on the direction of your parent links, select one of the following:
Outward parent links
or