In a project, we have stories with due date field and resolution date field at story level.
The story completion is due on xxx date. The resolution date however is some other yyy date.
I want to compare whether due date xxx is how many days earlier or later from the resolution date yyy.
What jql query we can write.
Hi Sanchit,
Sadly there is no way to query this kind of things using out of the box features. However, I believe using Script Runner for Jira you can type the following JQL within the advanced search:
issueFunction in dateCompare("project = 'My project' AND type = Story ", "resolutionDate > dueDate")
Regards
Hello Jack, is script runner Available for enterprise version like ones adopted by the big companies and they using JIRA for the project management purpose?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, is available on both Server and Data Center deployment options :)
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.