i'm trying to import data either a tab delimited or excel file still get the same error that physical file does not exist. here is the code and error OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 42 ; 43 /** Import an XLS file. **/ 44 45 PROC IMPORT DATAFILE="C:/Users/RChiruka/Documents/software/SASUniversityEdition/Myfolders/mandeya/nur.xlsx" 46 OUT=WORK.MYEXCEL 47 DBMS=XLSX 48 REPLACE; 49 RUN; ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/C:/Users/RChiruka/Documents/software/SASUniversityEdition the excel file is saved in the shared folder myfolders. i also tried to change the forward slash to back slash with the same result. thanks
... View more