DATA MYDATA; INFILE 'E:\SASUniversityEdition\myfolders\Essentials\EXAMPLE.CSV' DLM=',' FIRSTOBS=2 OBS=11; INPUT GROUP $ AGE TIME1 TIME2 TIME3 Time4 SOCIO; PROC PRINT DATA=MYDATA; RUN; After running this my SAS is showing that the physical file does not exist, Although the file is there at the specified location in INFILE statement.Can anybody help me with this.....!
... View more