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!
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.