Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×I have multiple projects in Jira. I want to combine the tasks from the different projects in one Kanban or Scrum board. However, I need to apply different filters to the different projects since they use for example the fix version differently. Is this even possible in Jira?
The JQL filer starts with: project in (pr1, pr2, pr3) AND Status in (....
I would like to write like this: project in (pr1) AND Status in(....) AND project in (pr2) And Status in (...) And project in (pr3) AND Status in (...)
but I don't get it to work.
Please help!
Hi Hans
I think that what you have would work if you put brackets around each set of "project" and "status" and change some of the ANDs to ORs, like
(project in (pr1) AND Status in(....)) OR (project in (pr2) And Status in (...)) OR (project in (pr3) AND Status in (...))
Yes, it works. Thanks.
I had an "Order by Rank" in there as well. That's why it didn't work. I now put that in the end....still learning :)
Thanks so much for the help.
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.