The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I set a condition for a value not in a custom field?

Jenifer Kuntz
Contributor
October 6, 2016

I have a multi-select custom field and I am sending a custom email based on this field.  If the field contains other I want to send one email if it does not contain other it is a different email.

I am using 'My value' in cfValues['My Multi List']*.value but ca not figure out the reverse, not in does not work.  

How can I do this?

Thanks!

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
Answer accepted
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 6, 2016

The converse is:

! ('My value' in cfValues['My Multi List']*.value)

or if you used a variable it would be more obvious

def ret = 'My value' in cfValues['My Multi List']*.value
!ret
Jenifer Kuntz
Contributor
October 6, 2016

Thank you!