I'm trying to make a filter to see any issues that has been in a user queue for 7 days or more. I used the last updated date, but as this is not perfect as any updates to the issue changes this date. I want a filter to display any issue where the assignee was set 7 days (or more) ago.
Any help appriciated!
What I currently use:
Assignee in (user1, user2, user3) AND updated <= startOfDay(-6) AND status not in (Closed, resolved) AND issuetype in (Improvement, Bug)
Hey Jjohansen.
I think you can use an JQL like this:
assignee=currentuser() AND assignee changed after startOfDay(-7)
Just note that I usent the value currentuser() in my query, in your case you can use something like assignee in (value1,value2,value4)
Also this query will list all the user issues without filtering by status you can add it if you want.
Hope this helps!
Try this:
project = (enter the name of project) and assignee was (name of user) and assignee changed before startOfDay(-7)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am interested in this functionality as well. I am trying to implement a filter that shows all the recent Jiras I have worked on and order them by date (relative to when I have worked on them)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I suppose below JQL works. but working on a issue should have been capture by issue status change.
status changed by "alanaf"
alanaf should be replaced by user name you want to add
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.
Thanks Diego,
Unfortunately this does not work as expected. It seems this filter display issues where the assigne was changed to any user more than 7 days ago and not just the current assignee.
Would it be possible to do something like:
assignee=currentuser() AND assignee changed to currentuser() after startofday(-7)
I tried to dabble with it but had no luck unfortunately.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.