Hello,
I'm using the "JIRA Misc Custom Fields" plugin for a few custom fields.
I'm looking to create a custom field that gives me the time needed to resolve an issue. Following my logic, and using the description on the help pages for the plugin, it would be something like:
<!-- @@Formula: issue.get("resolutiondate")==null ? null : (issue.get("resolutiondate").getTime() - issue.get("created").getTime()) / 1000 / 3600 / 24 -->
However, this return the result as an integer in days.
What I would need is a return value as a time.
For instance, if the resolution time took 15 hours and 13 minutes, it should return: 15:13:00
Is there any way I can get this type of result?
Thanks for any help anyone can offer!
You can use the formatting feature of Calculated number fields (see the documentation). You can compute a number of seconds as the value of the calculated field, and then format that number using some custom formatting code in @@Format. This requires some programming though.
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.