Hi,
I wonder how to convert char into date. I have a variable 'DATE' in character format like below
DATE
2020.06
I need to convert this to 2020-06 in date format
I've tried input(t1.DATA,YYMMd.) hopeless what I got is '13JUL1965'
Can you help me with solution?
data want;
chardate='2020.06';
numdate=input(compress(chardate,'.'),yymmn6.);
format numdate yymmd8.;
run;
data want;
chardate='2020.06';
numdate=input(compress(chardate,'.'),yymmn6.);
format numdate yymmd8.;
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!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.