Hello
I want to export sas data set into Excel file.
What is the reason for the error?
ERROR: DBMS type EXCEL not valid for export.
Should I write end XLS or XLSX?
/***Create a folder***/
Data _null_;
NewDirectory=dcreate("TYOTA","/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/");
Run;
/***Export***/
PROC EXPORT data=sashelp.cars
OUTFILE="/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA/Ex1.XLS"
DBMS=EXCEL REPLACE;
SHEET="Sheet_R";
RUN;
The code with DBMS=XLSX is working well
PROC EXPORT data=sashelp.cars
OUTFILE="/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA/Ex1.XLSX"
DBMS=xlsx REPLACE;
SHEET="Sheet_R";
RUN;
Hi,
DBMS=EXCEL only works for MS-Windows. Use DBMS=XLS instead
- Cheers -
Hi,
DBMS=EXCEL only works for MS-Windows. Use DBMS=XLS instead
- Cheers -
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.