Hi,
I have an issue with some numbers which represent amounts while exporting in Excel like this:
proc export data=INF_SUM outfile="/data/appli/file/ggg.xls" dbms=xls replace; sheet="catalog"; run;
In my sas table INF_SUM I have amounts like for example "43.87" whereas on ggg.xls it is transformed like "43.86895", which don't represent an amount anymore if you don't manually ask Excel to transform the column concerned.
Do you know I can do to keep formats?
I work with Excel 2010 and SAS Enterprise Guide 7.1
Thank you for help
If you want the numbers rounded to .01, you should do so before exporting. SAS exports numbers as raw values to not lose data (dates and datetimes usually retain date formatting).
data INF_SUM;
set INF_SUM;
amount = round(amount,.01);
run;
I you don't want to round, you can always export to a text format (csv) in a data step and use the proper format in the put statement.
Hi,
Just to add, if you want nice looking Excel output then rather than use Export which is pretty basic, use ods tagsets.excelxp:
http://support.sas.com/resources/papers/proceedings13/316-2013.pdf
You can specify Excel formats and such like.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.