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
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.