I have a board created which is based on a filter, pulling in tickets from multiple projects, and specific epics, but my epics do not show in the backlog view. My filter query includes project in (GLOB, AMER, EMEA) but in the board settings, under projects in board, there is a message which says...
We can't show the projects on this board, because the board's filter doesn't specify any. Your users may have trouble managing issues and sprints on this board. Try including some projects in the filter to fix this.
As i remove the epics from the query the epics will now display in the sidebar of the backlog view. How can I get the epics to show up with the query:
project in (GLOB, AMER, EMEA) AND "Epic Link" in (AMER-149, AMER-213, AMER-207, AMER-209, AMER-215, EMEA-506, AMER-212, AMER-154, EMEA-879, EMEA-877, EMEA-872, EMEA-878) OR labels = p2 ORDER BY Rank ASC
Your filter is mostly correct...Epic link is populated when a story, task, or bug is linked to an epic... but not the Epics themselves. Maybe try this one:
project IN (GLOB, AMER, EMEA)
AND (
"Epic Link" IN (AMER-149, AMER-213, AMER-207, AMER-209, AMER-215, EMEA-506, AMER-212, AMER-154, EMEA-879, EMEA-877, EMEA-872, EMEA-878)
OR key IN (AMER-149, AMER-213, AMER-207, AMER-209, AMER-215, EMEA-506, AMER-212, AMER-154, EMEA-879, EMEA-877, EMEA-872, EMEA-878)
)
OR labels = p2
ORDER BY Rank ASC
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just came to say thanks for this answer... I couldn't figure out what I was doing wrong, and it turned out I needed the AND clause to use parenthesis:
project IN (<projects>)
AND ( something = something OR somethingElse IN (<things>) )
I think the OR clause was screwing up the filter, so Jira couldn't get the Projects.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That logical order of precedence can get you...without the parens so it knows what we want. ;^)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.