hello,
I need to convert date-of-birth that is printed in text as YYYYNNN where NNN=days count from Jan1 inclusive.
Here are the examples:
Data have;
Input DOB $ ;
Datalines;
1975325
1993236
1980280
run;
here is the output that I would like to get:
DATA WANT;
FORMAT DOB $ 10.;
Input DOB $ ;
Datalines;
1975-11-21
1993-08-24
1980-06-10
RUN;
thank you
I don't know of an informat offhand which would handle that, but just code is pretty simple:
data have; input dob $; date_of_birth=input(cats(substr(dob,1,4),"01","01"),yymmdd10.) + input(substr(dob,5),best.); format date_of_birth date9.; datalines; 1975325 1993236 1980280 run;
So create a date of 01-01-year, and then add days on.
I don't know of an informat offhand which would handle that, but just code is pretty simple:
data have; input dob $; date_of_birth=input(cats(substr(dob,1,4),"01","01"),yymmdd10.) + input(substr(dob,5),best.); format date_of_birth date9.; datalines; 1975325 1993236 1980280 run;
So create a date of 01-01-year, and then add days on.
Thanks RW9.
Actually,after scanning the formats page there is a format to do this (always best to use the informats where possible):
http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000201594.htm
data have; informat dob julian7.; input dob; format dob yymmdd10.; datalines; 1975325 1993236 1980280 run;
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.