Hi, I started SAS several days ago and I have a problem with if then else statement. What I tried to do was to keep some of the variables from the old dataset, which indicate exactly the same data but asked differently, and to create new variables from filtered ones.
This is the code I used:
data new;
set old;
Keep var A B;
if A=. and B ne . then C=B;
else if A ne . then C=A;
run;
I was able to see A and B in my new dataset but C has never been created. Could you let me know if there's something went wrong with it? Thank you in advance!
Your KEEP statement only says to keep A, B and a VAR variable, not C so C is dropped.
data new; set old; if A=. and B ne . then C=B; else if A ne . then C=A; Keep var A B; *MISSING C; run;
Note that your logic is essentially the COALESCE function, so your IF/THEN can become:
C = coalesce(a, b);
@Mion wrote:
Hi, I started SAS several days ago and I have a problem with if then else statement. What I tried to do was to keep some of the variables from the old dataset, which indicate exactly the same data but asked differently, and to create new variables from filtered ones.
This is the code I used:
data new;
set old;
Keep var A B;
if A=. and B ne . then C=B;
else if A ne . then C=A;run;
I was able to see A and B in my new dataset but C has never been created. Could you let me know if there's something went wrong with it? Thank you in advance!
Your KEEP statement only says to keep A, B and a VAR variable, not C so C is dropped.
data new; set old; if A=. and B ne . then C=B; else if A ne . then C=A; Keep var A B; *MISSING C; run;
Note that your logic is essentially the COALESCE function, so your IF/THEN can become:
C = coalesce(a, b);
@Mion wrote:
Hi, I started SAS several days ago and I have a problem with if then else statement. What I tried to do was to keep some of the variables from the old dataset, which indicate exactly the same data but asked differently, and to create new variables from filtered ones.
This is the code I used:
data new;
set old;
Keep var A B;
if A=. and B ne . then C=B;
else if A ne . then C=A;run;
I was able to see A and B in my new dataset but C has never been created. Could you let me know if there's something went wrong with it? Thank you in advance!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.