I have a dataset with four variables id,acn,acn1,acn2 with id as identifier variable..I should output those records where acn, acn1,acn2 are not equal to NOT APPLICABLE or missing
please try
data want;
set have;
if acn not in ("NOT APPLICABLE",' ') and acn1 not in ("NOT APPLICABLE",' ') and acn2 not in ("NOT APPLICABLE",' ') then output;
run;
Thanks,
Jag
please try
data want;
set have;
if acn not in ("NOT APPLICABLE",' ') and acn1 not in ("NOT APPLICABLE",' ') and acn2 not in ("NOT APPLICABLE",' ') then output;
run;
Thanks,
Jag
At least one or all of the variables acn, acn1,acn2 should satisfy conditions at the same time?
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.