BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
80sMetalForever
Calcite | Level 5

I'm summing a column:

SUM(DIRECT_EP)

and no matter how I format it I get at the most:  -5.6843418860808E-14

I would like to see ALL digits; I tried things like FORMAT 50.50 and got the same thing so obviously I'm going about this wrong.

thx!

not sure if it matters but I'm doing it in PROC SQL

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

SAS adheres to an IEEE standard for floating-point number representation, and that precision might be what you're seeing.  For all of the details, reference this article:

Numerical precision in SAS

Chris

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!

View solution in original post

3 REPLIES 3
ChrisHemedinger
Community Manager

SAS adheres to an IEEE standard for floating-point number representation, and that precision might be what you're seeing.  For all of the details, reference this article:

Numerical precision in SAS

Chris

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!
snoopy369
Barite | Level 11

50.50 wouldn't work in any event, since it doesn't allocate any space for the decimal point, and I think you have to have one spot to the left of the decimal (so 50.48 is your maximum).

In general, assume you have 15 digits of safe precision at the most.  BEST16. would give you that.  To get more precise than that you'd have to use another system that used more than 8 bytes to store numbers.

80sMetalForever
Calcite | Level 5

thx guys, I talked the requester into rounding so not really an issue now but still a good lesson on the subject

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 3789 views
  • 3 likes
  • 3 in conversation