Dear,
In my data the variable 'orres' is chracter variable with different values. I need to make the program work only obs containing dates.
The program below gave me the output I need. I am using length function to select dates.
But If a ORRES value with length equal to 10 and not date .How to skip the values that are not dates. Thank you very much
data one; length orres $200; input orres ; datalines; 06:00 21:00 2016-02-29 2017-02-13 ; data two; set one; if length(orres)=10 then adt=input(orres,yymmdd10.); format adt date9.; if adt > '10feb2017'd then delete; run;
It partly depends on the data but not dates would be missing so delete all records where ADT is missing.
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.