Hello, I am trying to import Excel spreadsheets across platforms. I am using the following code but I get an error that Datarow is not valid. My data starts in row 7 and the column headings are in row6. proc import FILE="\\...My file.xlsx" out=Myfileout dbms=excelcs /*ExcelCS is required else I get "Class not registered" */ replace; sheet="Dashboard"; datarow=7; run;
... View more