Hi, I have a problem where I try to specify the start row to fetch data on my proc import, but I always get this error ERROR 180-322: Statement is not valid or it is used out of proper order for the following program
PROC IMPORT OUT= WORK.name
DATAFILE= routeFile
DBMS=EXCEL REPLACE;
RANGE="'Sheet 1$'";
startrow = 25;
GETNAMES=YES;
MIXED=NO;
SCANTEXT=YES;
USEDATE=YES;
SCANTIME=YES;
RUN;
I also tried specifying a range after sheet 1$, but it also got me an error Name ''Sheet 1$'A25:J180' is too long for a SAS name in this
context.