Hello!
I have a structure formula column where I want to show an array of open issues of a certain type. We have a custom issue type called Risk. When I use the following formula I get all the linked issues of type Risk
@Yvette Nash Hello again,
just in case anyone else finds this post: please refer to the answer from its duplicate here: https://community.atlassian.com/forums/App-Central-questions/Re-Creating-a-Structure-formula-column-that-lists-issues/qaq-p/3111671/comment-id/20046#M20046
the correct syntax is: issueLinks.FILTER($.type = "risks" and $.source.status.Category != "done")
Hi @Yvette Nash what I believe is happening:
Solved: Need help with Structure for Jira Expr advanced ex...
Sample Formulas - Issue Links and Subtasks
Try the below and let me know if it worked for u:
WITH linked = issueLinks.MAP( IF($.source = this, $.destination, $.source) ) : linked.FILTER($.issuetype = "Risk" AND $.status.category != "Done") |
Hope this helps 😊
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.