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!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.