May 7, 200817 yr I have a repeating field with n values in it. I am gathering all data from the repetitions into a variable using the List() Function. I then want to check for two conditions, does the list contain the values 143 and also 33. However in using a pattern count the # 133 would trigger as true in the evaluation. I need it to return false. Whats the best way to proceed, Id like to not use an additional relationship if possible. Thoughts?
May 7, 200817 yr FilterValues ( MyList ; MyValue ) will result in MyValue if MyValue belongs to MyList, considering the CR separators. So not IsEmpty ( FilterValues ( MyList ; MyValue ) ) is what you're looking for
Create an account or sign in to comment