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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
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.
Happy to help ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi JT,
Sorry I did not word that right. I wanted all except for Done. Merle and Ravi got me the answers. Thanks.
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.