Hello, I'm using the following code to import a Microsoft Excel Worksheet (.xls) dataset into SAS 9.4: proc import out=Sleep datafile="H:\NIAGEN Clinical Trial\Fellowship Project\Datasets\SAS Programs for Data Analysis" DBMS=EXCEL REPLACE; RANGE="Sheet1$"; GETNAMES=YES; MIXED=YES; SCANTEXT=YES; USEDATE=YES; SCANTIME=YES; run; However, I keep getting this error message in the Log: <<ERROR: Unable to open file H:\NIAGEN Clinical Trial\Fellowship Project\Datasets\SAS Programs for Data Analysis.XLS. It does not exist or it is already opened exclusively by another user, or you need permission to view its data.>> I don't have the file open when I'm running this code. Many thanks in advance for some advice!
... View more