My data is
A B C
1 0 1
0 0 0
1 1 0
0 0 1
1 1 1
What to create a flag variable which is missing when A or B or C have 1 and flag variable should be . when all three of them have 0
WANT dataset like
A B C nmiss
1 0 1 .
0 0 0 1
1 1 0 .
0 0 1 .
1 1 1 .
Any quick way to do this?
if sum(a,b,c)=0 then flag=1;
else flag=.;
Thank you!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.