You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I am working as a project Manager, i have around 10 Jira projects in my function and my requirement is to show blocked status tickets team in rows and blocking tickets team in columns. So far am able to display either blocked or blocking teams and not the both. Hence expecting some solution in this forum.
To get blocking issues:
issueFunction in linkedIssuesOf("filter = 'filter name'", "is blocked by") AND status not in (Closed, Resolved) ORDER BY created DESC
Blocked issues:
project in ("a", "b", "c", "d", "e") AND status = Blocked
How to combine and display these two filters results?
Hi @Gopal S
All you need to do is add "OR" operator in the two filters that you have managed to create. So, your query will look something like :
(project in ("a", "b", "c", "d", "e") AND status = Blocked) OR (issueFunction in linkedIssuesOf("filter = 'filter name'", "is blocked by") AND status not in (Closed, Resolved)) ORDER BY created DESC
Try this & let me know if it works.
Hi @Vishal Thanks for your suggestions, now am able to get the combined results from both the queries, but how do i display it in the dashboard or a board with the linkage between those two filter results? like blocked and blocked by views.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Gopal S
I assume you already have a dashboard created, if so just add linked issues in column display of gadget configuration, which should show linked issues, it should work, can't remember if it works in jira server haven't used since long.
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.
Yes Vishal i have a Dashboard with Projects having blocked issues in the rows but to show linked issues in the columns, seems Jira Server doesn't support displaying linked issues :( . So i have to see any other workarounds to have that view. Thanks.
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.