It appears that I can do direct searches to the Text field with a literal string such as
TextField ~ "findThisString"
But I can't compare it directly to the value in another custom field:
TextField ~ "CustomFieldName"
Is there a way to do this? If it matters, the field I want to compare to the text field is an Insight Object field.
Thanks in advance for any ideas!
Hello,
You can not do it out of the box.
You would need an add-on for it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could use the Power Scripts add-on:
Your JQL query would look like this:
key in silJQLExpression(
'#{your custom field name} == #{your custom field name}'
,
'project = TEST'
)
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.