Hello,
I am very new and green to SAS and I am sure that I just not writing something correctly. I have a data set where one of the variables is called status (survived vs perished). I want to select only the ones that survived which I am coding in the following way:
data survived;
set birds;
if status = perished then delete;
proc print data= survived;
run;
Once I do that keeps printing all the data without deleting the ones that perished. Can someone help me please?
You probally need to quote the value to make it a string constant and not a variable name
data survived;
set birds;
if status = "perished" then delete;
run;
proc print data= survived;
run;
That was my problem! thanks so much!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.