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?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.