It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It started as any story starts, on a normal, rainy day. Admin meets App, and her name was Klok2, and like any first relationship we were both trying to make it work but neither one knew what...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.