Hi all, Currently, I'M facing sas date format issue in my existing code kindly give the solution for the below code { data _null_; infile lss279; input @1 sdte $char10.; datalines; 25.12.2017 ; dte2 = put(dte1,ddmmyy10.); dte2 = substr(dte1,7,4)||substr(dte1,4,2)||substr(dte1,1,2); run; ) and here is the output: (2017.12.25) and my requirement is 25.12.2017 but why I am getting that results I'm not able to understand and the thing is I'm using ZOS 8.1 version (mainframe ) Thanks & regards rohitkrishna
... View more