Hi,
I have a csv file which has a date variable with values like 160911, 151111.
I want to separate this date with either slash or hyphen like 16/09/11 and 15/11/11.
Then do this:
data want;
input datevar ddmmyy6.;
format datevar ddmmyys8.;
cards;
160911
151111
;
run;
What is the sequence? YYMMDD, DDMMYY or MMDDYY?
Then do this:
data want;
input datevar ddmmyy6.;
format datevar ddmmyys8.;
cards;
160911
151111
;
run;
Very little information of what you really want to do 🙂
Do you want to read the file into sas and convert the date, do you want to change the file i.e write back the converted date.
Why do you want to insert / into the date?
Anyhow, this little step adds / to the new variable outdate by reading the variable indate 🙂
data test;
length indate $6 outdate $8;
input indate;
outdate = cats(substr(indate,1,2),'/',substr(indate,3,2),'/',substr(indate,5,2));
datalines;
160911
151111
;
run;
BR
Fredrik
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.