Page 1 of 1

Missing Values

Posted: Mon May 03, 2021 8:45 am
by adrmnc
If I want to add missing values as anything written that DOES NOT MATCH MALE OR FEMALE, what is the code for the or?

i get it is:

Code: Select all

when $source != 'Male'
but

Code: Select all

when $source != 'Male' or 'Female'

doesn't work for me, neither OR, comma, &...

Re: Missing Values

Posted: Mon May 03, 2021 8:48 am
by jonathon
if $source != 'Male' and $source != 'Female'

cheers

jonathon