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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.