Hi Omega,
Please find below the code and its output for you problem:-
Code:-
=================================================
data new;
informat mydate mmddyy10.;
input mydate ;
format mydate mmddyy10.;
datalines;
03/04/2013
11/03/2012
04/11/2012
01/01/2011
05/09/2009
;
run;
data new1(drop= month day year);
set new;
month=month(mydate);
day=day(mydate);
year=year(mydate);
new_date=cats(month,"/",day,"/",year);
run;
===============================================
Output:-
================================================
Obs mydate new_date
1 03/04/2013 3/4/2013
2 11/03/2012 11/3/2012
3 04/11/2012 4/11/2012
4 01/01/2011 1/1/2011
5 05/09/2009 5/9/2009
==================================================
/Daman
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 save with the early bird rate—just $795!
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.