How can I check all issues in a project except raised by some user and in some date range?

Tarun Diwan May 3, 2016

I would like to know a query to check all the issues in a project except by one user raised in specific date range. Let's say there are three users filing issues in JIRA in a project. One user files bugs after 1st of April which are not required. So how to check all issues by all three users in a project, but not the bugs filed by one user after 1st April?

1 answer

1 vote
Chris Dunne
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.
May 3, 2016

You need two filters

filter1: All bugs filed by user1 after 1st April

reporter = user1 and createdDate >= "2016/04/01"

filter2: All other issues

reporter in (user1,user2,user3) and filter != filter1

 

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 3, 2016

I'd do it in one filter, but it's the same idea.

reporter in (user1, user2) or (reporter = user3 and created < "2016/04/01")

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events