I have a dashboard listing tickets in "Customer Acceptance" and I would like to exclude tickets where the linked work/ticket has been marked as done.
Currently, it looks like this:
Status | Links | Key | Summary |
Ready for Acceptance |
| ||
Customer Acceptance |
| ||
Ready for Acceptance |
| ||
Customer Acceptance |
| ||
Ready for Acceptance |
| GWRR: HURON CENTRAL RAILWAY - Gregory Beharriell UNABLE TO CERTIFY RECORD | |
Ready for Acceptance | CCS-6673 |
I would like to exclude all the work items where the links are closed. In this case, only the last item with Key CS-8405 would appear.
I couldnt find how to do it with out-of-the-box JQL. You can use Scriptrunner or JQL extensions app to have access to linkedissuesstatus or similar function.
For example:
and createdDate >= startOfMonth() AND (issueLinkType = "relates to" AND linkedIssueStatus = Done)
Will list all work items from the beginning of the month with the link relates to and status of that linked issue is Done.
If you don't have Scriptrunner or JQL extensions, the best way to filter is to add a custom field or label to a linked issue that is in Done status.
Regards - Aaron
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.