Hi, Im using SAS University Studio 3.4, after 10 years of not using it.
The snippets Filter doesnt allow to delete or filter out data line base on the sas created obs#
I wish to use a simple data net set old if then delete statement but using the OBS# as the criteria
Can somoene pls give me the code I need for that?
THANKS!
Its a comparison operator - NE - Not Equal
They're documented here:
http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000780367.htm
I believe you could do something like this to delete observation #1. _n_ is an automatically generated variable in data steps that's dropped from the output.
data newtable;
set oldtable;
if _n_ ne 1;
run;
Its a comparison operator - NE - Not Equal
They're documented here:
http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000780367.htm
"Not equal to", scroll to comparison operators
http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000780367.htm
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.