Hi guys!
I have trouble to create quick filter that will show tasks that are currently assigned to certain users. Our work flow usually looks like that:
First task goes to backend team, then to frontend and at the end to testers.
I use
component = Backend OR assignee = XXX OR assignee = YYY OR assignee = ZZZ
but this JQL shows as well tasks that were assigned to backend team member but no longer are.
Is there a way to see only tasks that are currently assigned to those users?
Hi, @Mikołaj
component = Backend OR assignee = XXX OR assignee = YYY OR assignee = ZZZcomponent = Backend AND assignee IN (XXX, YYY, ZZZ)Hi @Mikołaj ,
as you're working exclusively with OR, it will return tickets that fulfil any one or more of those criteria. So as long as the component on the work item hasn't been changed to something other than "Backend", the filter will still return items for the Backend team.
You would need to share more on how you use the Component field on work items, but right now, my first suggestions would be:
Maybe this already helps. If not, please share a bit more on how tickets for the Backend, Frontend and Testing teams are identifiable.
Greetings
Philipp
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you guys! While i was reading yours answers i realize that i had logic loop in my approach. Looks like i will have to do two separate filters to fulfill my team lead need ;)
Thank you!
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.