I have two datasets that I want to display in one spreadsheet but two separate worksheets.
The below does not work because I get the error:
"DBMS type excel2003 not valid for export"
Is there any other way to do it?
Thanks!
The below does not work because I get the error:
"DBMS type excel2003 not valid for export"
Is there any other way to do it?
Code:
proc export
data=test
outfile="c:\temp\results.xls"
dbms=Excel2003;
run;
proc export
data=test2
outfile="c:\temp\results.xls"
dbms=Excel2003;
run;
Thanks!