Hi,
I'm just basically trying to make a comparison out of 2 customfields that are from the same type.
I'm using a Text Calculated CF from the MISC CF add-ons.
It looks like this:
<!-- @@Formula: issue.get("customfield_xxxxx") != issue.get("customfield_yyyyy") ? "Yes" : "No" -->
I've been trying with many types from text to nFeed fields (which was my initial target) but it still remains stucked on the "Yes" value.
Thanks very much for helping me.
The formula is written in BeanShell, which is almost the same as Java. Thus you want to use the "equals" method to compare values. But be careful to first test for null values. For example, if your custom fields are of type "text", you can tr the following:
<!-- @@Formula: if (issue.get("customfield_xxxxx")==null || issue.get("customfield_yyyyy")==null) return null; return issue.get("customfield_xxxxx").equals(issue.get("customfield_yyyyy")) ? "No" : "Yes" -->
Also, please note that this might not work for some custom field types which return complex objects that might not implement the "equals" method correctly.
For information on the value type of standard custom field types, see https://innovalog.atlassian.net/wiki/display/KB/Using+issue.get%28%3Cfield_name%3E%29+in+scripts
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.