Hi:
With the IMPORT procedure:
http://support.sas.com/kb/5/458.html
[pre]
proc import datafile="c:\myfiles\Accounts.xls"
out=sasuser.accounts;
sheet="Prices";
getnames=no;
run;
proc print data=sasuser.accounts(obs=10);
run;
[/pre]
But, your code snippet shows the MISSOVER option -- which is not relevant to PROC IMPORT. If you are using ODBC or DDE, the syntax is shown below:
Libname Engine:
http://support.sas.com/kb/12/628.html
[pre]
libname mylib odbc dsn=Excel;
proc print data=mylib.'This Sheet$'n; run;
data mylib.new;
set mylib.'This Sheet$'n;
run;
[/pre]
DDE:
http://support.sas.com/kb/2/929.html
[pre]
filename fileref dde 'Excel|[Book1]Sheet1!R1C1:R1C5';
infile filref missover dsd notab dlm='09'x;
input a b c d e;
run;
quit;
[/pre]
If you are still having problems with your program, your best bet for help is to contact Tech Support.
cynthia