Page 1 of 1

How to Exclude Multiple Values in Data Variable

Posted: Mon Feb 19, 2024 7:13 pm
by ThomasChen
Hi all,

I used ParticipantID != 3 to filter out records with ParticipantID of 3. Now I need to exclude 3 and 4. How can I modify my condition to remove both values?

Thanks for your help!

Re: How to Exclude Multiple Values in Data Variable

Posted: Mon Feb 19, 2024 9:45 pm
by reason180
(ParticipantID != 3) and (ParticipantID != 4)

Re: How to Exclude Multiple Values in Data Variable

Posted: Tue Feb 20, 2024 8:15 am
by ThomasChen
Hi,
It works.
Thanks!