FORMULA LANGUAGE
Indicates if a text string (or a text list) is not contained within another text list. The function is case-sensitive.
Syntax
@IsNotMember( textValue ; textListValue ) or @IsNotMember( textListValue1 ; textListValue2 )
Parameters
textValue
flag
In processing lists, @IsNotMember differs from a simple != test. != returns True if the pair-wise comparison of two entities has no entities in common.
For further details on pair-wise operators, see Operations on lists.
@IsNotMember returns True only if no member of the first argument is contained in the second argument.
Example See Also