Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Reporter - how to see all my issues instead of status = "Done"

Barbara Lewis March 14, 2019

Hi, I want to see all the issues I reported but the once with the status "Done" 

 

I tried different stuff as 

reporter = currentuser() AND status = "Awaiting Client Review" OR status = "Client UAT" OR status = "Go Live" OR status = "In Progress" OR status = "Internal QA" OR status = "To Do" OR status = "Requested"

reporter = currentuser() "-" status = "Done"

etc. 

 

No luck. 

 

Any suggestions? 

3 answers

2 accepted

0 votes
Answer accepted
Ravi
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.
March 14, 2019

@Barbara Lewis 

 

 If you want to get all the tickets created by you with done status run the following JQL

  reporter = currentuser() and status = Done 

 

if you want to get all the tickets reported by and status is not in done status run the following 

reporter = currentuser() and status !=Done.

  Please let me know if you have any questions

Thanks,

Ravi

Barbara Lewis March 14, 2019

Hi Ravi, 

 

Thanks this worked

0 votes
Answer accepted
Merle Fischer
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.
March 14, 2019

Hi @Barbara Lewis ,

do I understand correctly that you want all issues you created except for things in status done?

In that case try:

reporter = currentUser() AND status != Done

Let me know if that's what you were after

Cheers

Merle

Barbara Lewis March 14, 2019

Hi Merle, 

Thank you, you are a genius. 

This worked. 

Merle Fischer
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.
March 14, 2019

Happy to help ;)

1 vote
Jean-Théo [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.
March 14, 2019

Hi @Barbara Lewis ,

Welcome to the community!

So to find all the issues in which you are the reporter and that are closed, you can use :

reporter = currentuser() AND status = 'Done'

You can also user

reporter = userName AND status = 'Done'

If you want to have all the issues that are not closed you can do :

reporter = currentuser() AND status != 'Done'

OR

reporter = currentuser() AND status not in  ('Done', 'other status',...)

 

For your first filter, you only had to add parenthesis I believe :

reporter = currentuser() AND (status = "Awaiting Client Review" OR status = "Client UAT" OR status = "Go Live" OR status = "In Progress" OR status = "Internal QA" OR status = "To Do" OR status = "Requested")

Hope this helps,

JT

Barbara Lewis March 14, 2019

Hi JT, 

Sorry I did not word that right. I wanted all except for Done. Merle and Ravi got me the answers. Thanks. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events