Issue age / resolution time in structure using formula

Saurabh Kejriwal November 18, 2023

Here's how you may add a column in structure to report issue age / resolution time for each issue row using formula. Please note that the age is in days in below formula. I hope that helps:

if resolution=undefined:
concat(days_between(created,today())," d")

else:
concat(days_between(created,resolved)," d")

 Here’s how the the calculation works for the Issue aging as per JIRA Community of Practice:

  • If Issue is still not resolved. Age(d) = Current Time – Created Time
  • If Issue is already resolved, Age(d) = Resolved Time – Created Time

Meaning, Issue Aging will be stopped as soon as it is resolved.

0 comments

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events