I am trying to run the following code, but return missing values for all records for the new variable "denom_code32." For some reason, the "and" operator doesn't turn blue. Any ideas of what's going on?
Thanks,
Mike
data new; set input; if leave_code = '32' and verified_transfer = "yes" then denom_code32 = 1; else denom_code32 = 0; run;