Hi,
I have a data set data1 and want to drop observations where month larger than t, and save the new data as data2.
How shall I do this?
Thanks
Please provide a sample data of the variables you have with values. This will help to get better responses. Without the data it is very difficult to suggest the code.
Is January 2017 greater then December 2016 ?
Are you comparing just the month or the date ?
In what format is your date? Is Character? numeric? sas date?
If it is a character date - is it ddmmyy mmddyy or any othe format ?
The code will change according to your answer.
The best is to post example of your data.
Suppose you are interested to drop all observations of SASHELP.CLASS where AGE = 14 to get new data as myclass.
data myclass;
set sashelp.class;
where AGE ^= 14;
run;
If you interested to drop those whose SEX = 'M' then do:
data myFemale;
set sashelp.class;
where Sex ^= 'M';
run;
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.