Users want to filter issues that have a 'greater' updated date to the closed/resolved date.
Hi Robert,
with plain Jira, this is not possible. If you have the Scriptrunner app, you can do the following:
issueFunction in dateCompare("", "updated > resolutionDate")
Hi Thomas,
I need the 'Updated' date as follows....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you asked for the filter - with that filter you get a table of issues. Which columns you want to see is your decision then.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It seems also to be pulling off issues that have the same 'Updated' as 'Resolved' date?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think the datecompare function also compares the time portion of the datetime. Is this the cause in your example?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Some have the exact same date and time to the minute, if those issue werent in the list it would be perfect.
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.
I believe it compares the whole timestamp it gets from the database, so yes it would, although I didn't think Jira bothers to save seconds.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Im trying to run this when we have 1.3 million issues and this is timing out i think, so im combining it with JQL with no luck.
Do you have any advice on helping the time out problem? Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How did you combine it with JQL? Maybe it makes a difference if you add the additional JQL before or after the datacompare.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
created >= -10d AND issueFunction in dateCompare("", "updated > resolutionDate")
I just tried the created after it with no luck as well. I thought it being first would help :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
I just had a similar experience - but when I put all the parameters into the datecompare, then it ran a lot faster (by me). Try this:
issueFunction in dateCompare("created >= -10d","updated > resolutionDate")
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.