Hi all,
I'd like to create a calculated field to show SLA date.
It should be calculated as following: ticket creation date + 10 days.
Is it possible to base on ticket creation date?
I tried this:
<!-- @@Formula:(issue.created == null ? null : issue.created.plusDays(10)) -->
but the field isn't even visible in the screen.
Thanks in advance
You should be able to use
<!-- @@Formula:
issue.get("created") + 10
-->
Thanks Pete, I tried creating both calculated number and date fields, inserting the formula above but field is still not visible in issues edit screen.
(although these custom fields are configured to be shown in this screen) - any idea why?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
to be exact, this works:
<!-- @@Formula:
issue.get("created");
-->
the problem is with adding the 10 days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure - can you check the log files for errors? Just putting +10 on the end worked for me.
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.
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.