I am trying to import an Excel spreadsheet in SAS Enterprise Guide v. 7.15 (64-bit). This is the code: PROC IMPORT DATAFILE="C:\Users\username\OneDrive - Name\Documents\spreadsheet.xlsx" OUT= data_1 DBMS=XLSX REPLACE; GETNAMES=YES; SHEET="sheet1"; RUN; However I am getting the following Error message: ERROR: Physical file does not exist, C:\Users\username\OneDrive - Name\Documents\spreadsheet" I suspect it is because of the space in the path name ? Anyone has an idea ? Thank you!
... View more