Hello, I am having some trouble with Innovalog JIRA Misc Custom Fields.
So the following syntax works. I'm able to get the duedate - created in days, which is exactly what I intended.
<!-- @@Formula: issue.get("duedate")==null ? null : (issue.get("duedate").getTime() - issue.get("created").getTime()) / 1000 / 3600 / 24 -->
However, once I changed it to a custom date field, it won't work.
<!-- @@Formula: issue.get("customfield_11044")==null ? null : (issue.get("customfield_11044").getTime() - issue.get("created").getTime()) / 1000 / 3600 / 24 -->
The field doesn't work whether it's a DATE PICKER or a DATE TIME PICKER.
This is JIRA 7.2.7
Any ideas what I am doing wrong?
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.