Hello,
on my dataset I have a column in date format such as "12Sep07:0:0:0" and I want to convert this in to "Sep07" I tried put(mmyyyyp8.) and another variations but without success.
Do you have any idea how to convert this variable?
Many thanks!
Daniela
How about this,Daniela?
data temp;
date = '12Sep07:00:00:00'dt;*your date;
date_1 = put(datepart(date),monyy.);*your desired date;
run;
Good luck.
Anca.
How about this,Daniela?
data temp;
date = '12Sep07:00:00:00'dt;*your date;
date_1 = put(datepart(date),monyy.);*your desired date;
run;
Good luck.
Anca.
Hello Anca,
it worked! Tahnk you very much. ![]()
Kind regards,
Daniela
Great,Daniela.
Would you mark it as answered ![]()
Nearly 200 sessions are now available on demand in the Innovate Hub.
Watch Now →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.