If only, but it is not working. The program below is what I have to work with and datarow=3, firstobs=3, 3n, specifying a range and using getnames=yes - nothing worked. PROC IMPORT OUT= work.test1a DATAFILE= "C:\Users\knorwoo1\Documents\My SAS Files\9.4\BIOE 813\test1\Test1A.xls" DBMS=XLS REPLACE; GETNAMES=YES; RANGE="Sheet1$"; SCANTEXT=YES; USEDATE=YES; SCANTIME=YES; RUN; proc print; run;
... View more