- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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!
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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!
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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!