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;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.