Hi ,
our requirement is to find the difference between the two date time custom fields .is it possible ??
if possible please provide me the solution asap .
i have installed JIRA misc custom fields and i tried with the below expression .But that is not working for me .
Examole : Field 1 :created date bs (customfield_19700)
Field 2 : Closed Date bs (customfield_19716)
i need to find how the time taken to close the issue from the created date field .
these are JIRA custom field date time picker .
and also if it is possible with created and resolved date field
@Formula: issue.get("customfield_19716")==null ? null : (issue.get("customfield_19716").getTime() - issue.get("customfield_19700").getTime()) / 1000 / 3600 / 24 -->