BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
EMC9
Obsidian | Level 7

Hi Experts

 

Need some help please , I am trying to export numerical data to excel /xslb.

 

I have tried to format the field with BEST/NUMX with no luck.

 

The numerical data is standard 16 digits e.g 1111222233334444.

when I export using the below export code :

 

proc export outfile="Location\&TEST_NO._&TRIM_FROM._to_&TRIM_TO._&NOW..xlsb"
dbms=excelcs data = SDR_TXSET replace;
sheet="DATA";

quit;

 

when I open the excel sheet the data displays like : 1,2226543+13 & when I expand and format the cell the data displays like 

e.g 111122223334440 . which is incorrect.

 

Regards

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Since precision like that is not needed for statistics (the range of exponents in the real format is sufficient for either very large or very small values), this is usually no problem. Very often such large numbers are identification codes or such, and are therefore stored as character.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Because of the 8-byte real format that SAS uses for storing numeric data, the precision is limited to ~15 decimal digits. What you see is normal behaviour for data in SAS datasets.

EMC9
Obsidian | Level 7

Thank you for the reply - is there any way around this ? diff method ?

Thanks.

Kurt_Bremser
Super User

Since precision like that is not needed for statistics (the range of exponents in the real format is sufficient for either very large or very small values), this is usually no problem. Very often such large numbers are identification codes or such, and are therefore stored as character.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 867 views
  • 2 likes
  • 2 in conversation