Hi, You can try the following code: data One; informat ID $9. date yymmdd10.; format ID $9. date yymmdd10.; input ID date; cards; 100030006 2015-10-06 100030006 2015-09-03 100030006 2015-08-19 ; run; data Result; set one; day = day(date); month = month(date); year = year(date); Desired_Result=catx(' ',day,month,year); run; proc print; run;
... View more