Hi,
I have a board with the Query as -
project = ABC AND issuetype IN (Task, Bug, Story)
which is giving me a count of 786 work items. (Correct)
Now I want to filter out all the work items where assignee is no longer part of the org and not show it in the project backlog or current sprint board.
This is the query I am adding -
project = ABC AND issuetype IN (Task, Bug, Story) AND assignee != 633ffbb1b2e3c
which is giving me a count of 569 work items but the work items worked by the assignee != 633ffbb1b2e3c is only 10, so I should be getting the new total count as 776.
I compared the files and see that the new filter is also filtering out work items where assignee is "Blank" and also few work items of another team member who is currently working in the team.
What is going wrong in here?
Thanks for sharing, this works in general for all the inactive users of the project.
I will keep this handy :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kaushal Kumar Singh ,
please try to add a filter for unassigned work items. So your JQL should be :
project = ABC AND issuetype IN (Task, Bug, Story) AND (assignee != 633ffbb1b2e3c OR assignee IS EMPTY)
This should be the trick.
Hope this helps,
Fabio
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.