is there a way to report by group of people?

Ahmed Alghamdi September 25, 2017

I created many groups and I attached each person with the right group. now i need to be able to report by the group rather than the assignee

for example, i have 2 guys from Vendor A and 3 guys from Vendor B. I want to have a report that stated Team A has total of 10 tickets, and team B has total of 4 tickets and so on?

 

1 answer

0 votes
Marc Gervase September 25, 2017

You can write a simple JQL query using the membersOf operator.

This returns all issues assigned to members of the group "Vendor A".

assignee in membersOf("Vendor A")
Ahmed Alghamdi September 25, 2017

either the JQL or the basic search both allow to select the filter per group. what I want, is to add a widget or create a report, and I'd like to put a filter in that report so it shows me in one table the sum number of tickets per Vendor A and sum number of tickets per vendor B.

if i create the filter now, and I add widget or report, it asks me to show result per assignee, not per group name! :(

teggenberger September 9, 2020

I had this quesiton too: I have a group of five people, in different departements, that i want to filter.

I have to do a [participant = <person1> OR participant = <person2> OR participant = <person3> OR participant = <person4>]

shouldn't there be a way to do?:

[participant = <person1> OR <person2> OR <person3> OR <person4>]

Thanks

Suggest an answer

Log in or Sign up to answer