I'm asking for help with syntax.
I'm not developer so I don't know how should look like syntax for following:
One text field has value "apple"
Second text field has value "orange" =
Calculated field result should be "fruits"
Any idea?
With colleague we've managed to formulate the syntax:
(this is only excerpt)
<!-- @@Formula:
String impact = issue.get("customfield_12345");
String urgency = issue.get("customfield_12346");
if (impact.equals( "Orange" )) {
if (urgency.equals( "Apple" )) return "fruits"; }
return "err";
-->
</div>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.