Hi everyone! Need your help.
We have few teams working on the same projects and I need to make a dashboard with statistics only for our team.
The problem is when I try to make a pie chart or a two-dimensional filter using "Assignee" field - the gadget will show me results both for my teammates and guys from other teams, since in almost every issue we can have more than one assignee and they are not always from only one team, so even If i will make a filter for issues, assigned to our team, the gadgets will still show other people. How can I exclude them?
>in almost every issue we can have more than one assignee
How are you doing that? Jira's Assignee field is a single point of contact to prevent the "I thought the other person was doing it", and is single-select.
I think we need to see the JQL you are using in the filter you are using in the charts to help you properly with this!
Hey! Thanks for the answer!
Just look at this issue like it`s not Assignee, but other field. It is actually not "Assignee", but "QA Team Assignee" field - there are could be few people from QA that help investigating the issues. But I want to make statistics only for our team to see how much issues every team member recieved, not looking at other people`s results.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @animussz ,
When used with the IN and NOT IN operators, this field supports:
membersOf()
If your team has a separate group in Jira, you can try the following query method.
project = Demo and assignee in membersOf("Group A")
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.