Hi,
I have several worksheets in the Excel source file. Is there a way to import each in one datastep and then merge?
I've tried the following but it only imports the first worksheet:
<code>
proc import datafile="C:\data.xls"
out=customers
dbms=excel replace;
SHEET="'1$'";
SHEET="'2$'";
run;
</code>
Thanks
I have several worksheets in the Excel source file. Is there a way to import each in one datastep and then merge?
I've tried the following but it only imports the first worksheet:
<code>
proc import datafile="C:\data.xls"
out=customers
dbms=excel replace;
SHEET="'1$'";
SHEET="'2$'";
run;
</code>
Thanks