Hi,
I get string variable like this, 2001-12
I'd like to transfer this variable into date format like yyyymm;
How should I deal with this?
THX!
data want; input a $; date=input(cats(a,'-01'),yymmdd12.); format date yymmn6.; cards; 2011-12 2002-1 ; run;
Ksharp
data want; input a $; date=input(cats(a,'-01'),yymmdd12.); format date yymmn6.; cards; 2011-12 2002-1 ; run;
Ksharp
THX!
if your string is not being read with input statements, then use the formula that Ksharp suggests above. However, when you are reading that string with an INPUT statement, immediately it can be converted to the date standard with informat ANYDTDTE.
Borrowing from Ksharp's demo above,
data want;
input date anydtdte7. ;
format date yymmn6.;
list; cards;
2011-12
2002-1
;
run;
THX!
I get it.
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.