To import below data used RollNo Name Date Marks Remarks 1 Jai 24/10/1990 74 Good 2 Ram 16/11/2001 84 Better 3 Rose 9/2/2013 54 Bad 4 Pop 12/7/2001 96 Best This program is used to IMPORT PROC IMPORT OUT=Test1 DATAFILE="C:xyz\Record.xls" DBMS=Excel REPLACE; SHEET="Sheet1$"; GETNAMES=Yes; MIXED=NO; USEDATE=YES; SCANTIME=Yes; RUN; OUTPUT: Obs RollNo Name_ Date Marks_ Remarks 1 2 3 4 1 Jai . 74 Good 2 Ram . 84 Better 3 Rose 02/09/2013 54 Bad 4 Pop 07/12/2001 96 Best Here I'm not able to read date in proper format can anyone help me?
... View more