I am new to JQL and experimenting with the functionality.
I would like to find all issuetype = Task that were closed within a certain time after their creation. Is it possible? I only encountered the ways to pinpoint tasks within an absolute time frame, but not relative.
Thanks a lot!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Daniel Orlov -- Welcome to the Atlassian Community!
If you will regularly need this data and do not want to purchase a scripting add-on, you can implement this yourself using the automation rules with JIRA cloud. For example:
{{#=}}ROUND({{issue.Created.diff(issue.Resolved).millis}} / (1000*60*60*24), 3){{/}}
For more information about the automation rules, please see this documentation:
Best regards,
Bill
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.