I Have data from a xls file that has a column with date as 20081113 where it is the year, month and day. I want to change that date, but I keep getting either the wrong date, dots or stars. Following some answers in here I came out with this code, but I just get a dot data auction.clean3; set auction.clean2; DATE= input(PUT(S_SALE_DATE, YYMMDDn8.),anydtdte8.); format DATE DATE10.; attrib C_BID_AMOUNT format=dollar14.2; DROP S_SALE_DATE; run; could anyone help me on what could be wrong?
... View more