How to create a swimlanes based on report

Ollie Guan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 1, 2013

I need a JQL to state as Group By Reporter in Agile Board

2 answers

1 accepted

2 votes
Answer accepted
dleng
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 1, 2013

As in all JQL, you cannot just do a query for "sort by Reporter" if you did not return a list of reporters in the first place. It has to return something, so you can go with:

reporter in membersOf("jira-users") ORDER BY reporter ASC

reporter in membersOf("jira-developers") ORDER BY reporter ASC

reporter in (david, john, alex) ORDER BY reporter ASC

Or something along those lines. (Each of the above examples refer to one swimlane)

0 votes
Ollie Guan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 1, 2013

Got it,Thanks

Suggest an answer

Log in or Sign up to answer