Hello, I have been using SAS On Demand for awhile now and recently having trouble with the Proc Import process. I get the following error, and it seems to be something odd with a double slash. Can someone please help me? I've been doing the import process in SAS On Demand for awhile and never had this problem! My file is already has already been uploaded to the SAS On Demand online system. OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 68 69 /* Generated Code (IMPORT) */ 70 /* Source File: CLEAN.3Month.InfantDrivenFeeding3M.DATA_2022.Final.xlsx */ 71 /* Source Path: /home/agollenb0 */ 72 /* Code generated on: 9/15/22, 10:02 AM */ 73 74 %web_drop_table(WORK.IMPORT); 75 76 77 FILENAME REFFILE '/home/agollenb0/CLEAN.3Month.InfantDrivenFeeding3M.DATA_2022.Final.xlsx'; 78 79 PROC IMPORT DATAFILE=REFFILE 80 DBMS=XLSX 81 OUT=WORK.IMPORT; 82 GETNAMES=YES; 83 RUN; ERROR: Physical file does not exist, /home/agollenb0//CLEAN.3Month.InfantDrivenFeeding3M.DATA_2022.Final. NOTE: The SAS System stopped processing this step because of errors.
... View more