Hello, Current student learning SAS and neither I nor my instructor has found a solution. I apologize now if it seems elementary to most. I am trying to import an Excel file into SAS University and continue to get these errors. If anyone can shed some light, I'd appreciate any help! I noticed that the error does not include the .xlsx at the end of the statement. Thank you. 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 72 73 /* Generated Code (IMPORT) */ 74 /* Source File: NWdw.xlsx */ 75 /* Source Path: /folders/myfolders/sasuser.v94 */ 76 /* Code generated on: 11/25/18, 8:42 AM */ 77 78 %web_drop_table(WORK.IMPORT); 79 80 81 FILENAME REFFILE '/folders/myfolders/sasuser.v94/NWdw.xlsx'; 82 83 PROC IMPORT DATAFILE=REFFILE 84 DBMS=XLSX 85 OUT=WORK.IMPORT; 86 GETNAMES=YES; 87 RUN; ERROR: Physical file does not exist, /folders/myfolders/sasuser.v94//NWdw. NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE IMPORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 88 89 PROC CONTENTS DATA=WORK.IMPORT; RUN; ERROR: File WORK.IMPORT.DATA does not exist. NOTE: Statements not processed because of errors noted above. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: The SAS System stopped processing this step because of errors. 90 91 92 %web_open_table(WORK.IMPORT); 93 94 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 107
... View more