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!
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 save with the early bird rate—just $795!
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.