Hello,
I'm trying to filter on issues in JIRA where the assignee has not commented on or updated the ticket within 10 days, for example.
What kind of filter(s) would I use for this?
TIA!
Hi @Felix Chan,
Here is a link to a field reference guide for advanced searching. If you set your filter to pull all issues that "updated <10d and assignee != currentUser()" it will pull all issues that are older than 10 days and where you are not the assignee.
The documentation shows other functions you can use on "assignee" that can help you narrow it down.
Hope this helps get you started,
-Scott
You may want to use updated <= 10d
I realized not adding equals doesn't produce all results needed. Unless you're using a day ahead like updated < 11d then it would get 10 days or less.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the suggestion. Only issue with this approach is that if another user updates or comments on the ticket (for example, if I leave a comment asking the assignee to take action), those would get filtered out. I'd like to pull issues where only the assignee has not updated it.
Is there a similar search function to this:
updated <= 10d AND NOT updated by assignee
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That simple updated <= 10d searches for ANY issue NOT UPDATED within 10 days regardless of who is assigned.
If you want to find individuals then you may want to do "update <= 10d AND assignee = raynard.rhodes"
If you're looking for a group of individuals you may want "update <= 10d AND assignee in membersOf("This Group")"
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.
This is prone to discrepancies specially when one assignee comments on another item where someone else is the assignee within the same group.
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.