I'm using the Calulated Text field to get the Date from another Date field. The purpose of this is to have the "Date" and other "Non-Date" details bunched up together.
Currenty using this one:
<!-- @@Formula:
if (issue.get("Date Opened") == null) return null;
return issue.get("Date Opened").toString()
-->
The result is 2017-09-13 00:00:00.0
But the desired result is 13/Sep/17
You can use Java's format() method of the Date class on the result of issue.get() to format the date to your requirements.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried doing this:
<!-- @@Formula:
if (issue.get("customfield_14306") == null) return null;
return SimpleDateFormat("dd/MMM/yy").format(issue.get("customfield_14306"))
-->
But it did not work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to instantiate the SimpleDateFormat class, specify its FQN (or import it), and also you're missing a trailing semicolon:
<!-- @@Formula:
if (issue.get("customfield_14306") == null) return null;
return new java.text.SimpleDateFormat("dd/MMM/yy").format(issue.get("customfield_14306"));
-->
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @David Fischer!!! It's working now!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.