I want to export a SAS dataset from UNIX server to LAN as an Excel file but I want the Excel workbook to be created if it doesn't already exist.
The first export works and the ".xls" file is created when it doesn't exist.
However, I am concerned that the dataset might exceed the ~ 65000 rows in a ".xls" file so I would prefer to be able to export the data as ".xlsx".
The second export does not work when I try to export as ".xlsx" file unless I manually create a blank workbook called "Want.xlsx" before running the export.
I am working in SAS Enterprise Guide 6.1. Any help would be greatly appreciated. Thanks in advance.
PROC EXPORT DATA= work.HAVE
OUTFILE= "\\LAN\WANT.xls"
DBMS= EXCELCS REPLACE;
SERVER=SERVERNAME; PORT=0001;
SERVERUSER="USRDOM\&USER"; SERVERPASS="&PW";
SHEET= "OUTPUT";
RUN;
PROC EXPORT DATA= work.HAVE
OUTFILE= "\\LAN\WANT.xlsx"
DBMS= EXCELCS REPLACE;
SERVER=SERVERNAME; PORT=0001;
SERVERUSER="USRDOM\&USER"; SERVERPASS="&PW";
SHEET= "OUTPUT";
RUN;
Try DBMS=EXCEL or DBMX=XLSX instead of DBMS=EXCELCS. EXCELCS expects to write to XLS not XLSX.
Since your EG is a couple of versions behind your server may be as well. I don't remember exactly when XLSX became available so not sure which should work.
Try DBMS=EXCEL or DBMX=XLSX instead of DBMS=EXCELCS. EXCELCS expects to write to XLS not XLSX.
Since your EG is a couple of versions behind your server may be as well. I don't remember exactly when XLSX became available so not sure which should work.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.