proc export data=output_xlsd
dbms=xlsx
outfile="&Outdir./XYZ.xlsx"
replace;
run;
XYZ.xlsx is not retaining decimal points while exporting (Ex : 0.00 is showing as 0 , 149.00 is showing as 149)
I tried to add format in the datastep before exporting. It is not retaining from the dataset . IS there any other way to retain the decimals?
Thanks
Try ODS EXCEL or the older ODS TAGSETS.EXCELXP rather than PROC EXPORT? ODS gives you a lot of flexibility with respect to formatting your output.
Few years ago we could write DDE commands to format an Excel sheet from SAS
data _null_;
file DDEcmds;
put '[font.properties("Verdana","Bold",16,,,,,,,3)]';
run;
It no longer works now.
If you have to use PROC EXPORT, you could make a new CHARACTER variable to hold numeric number via put(var,f8.2).
Or you could try ODS EXCEL or ODS TAGSETS.EXCELXP .
ods excel file='/folders/myfolders/x.xlsx';
proc report data=sashelp.class nowd;
define weight/style={tagattr="format:####.00"};
run;
ods excel close;
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.