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!
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.