I am trying to set up a filter between 2 projects where issues are linked between the 2 projects, can anyone suggest if this can be done??
Hi @Simon Kendall ,thanks for your question. Do you mean something like this?
You can use the JQL, where 'project in' can be a group of projects, and to get a list of issues that are linked to other issues, you can specify that issueLinkType is not empty.
Then, if you add the 'Linked issues' field to the columns in the filter results, you have the list of issues and to which issue they are linked.
project in ("Wells Fargo Website", "Bank of America Website") AND issueLinkType is not EMPTY
I hope this helps but if not, please let me know and I or someone else can try to help you.
Cheers.
Great that seems to have done what I need it to do and have added a new SQL into the search to help with the filter on a specific field as well. Many thanks for your prompt reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I’m Maurício, a support engineer at Digital Toucan and I’m here to help you.
One alternative to what Valerie said would be an add-on that extended your JQL search.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all your issues from project Y that have a link with issues from project X
issue in linkedIssuesOfQuery("project = x") and project = Y
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Maurício
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.