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

Hi all,

I am working on this program which is giving me outputs for some observations and null values for others. The programs works for values until 1.3 and after that does not produce a output.

Please try putting 1.3 (which works) and 1.4 (doesn't work) in where statement of proc sql.

Data A;

do x =0.1 to 100not working by 0.1;

output ;

end;

run;

proc sql;

select * from A where x = 1.4; /* Try the values of 1.3 and 1.4 */

quit;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

This is caused by the fact that computers store numbers in floating point binary numbers.  You cannot represent 1/10th exactly using binary digits.  So eventually you see a difference between adding 0.1 multiple times and normal representation of the same number.  Use the ROUND() or test for a very small absolute difference instead.

Data _null_;

do x =0.1 to 2 by 0.1;

if x in (1.3,1.4) then put x= 'Not rounded';

if round(x,0.1) in (1.3,1.4) then put x= 'Rounded' ;

end;

run;

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

This is caused by the fact that computers store numbers in floating point binary numbers.  You cannot represent 1/10th exactly using binary digits.  So eventually you see a difference between adding 0.1 multiple times and normal representation of the same number.  Use the ROUND() or test for a very small absolute difference instead.

Data _null_;

do x =0.1 to 2 by 0.1;

if x in (1.3,1.4) then put x= 'Not rounded';

if round(x,0.1) in (1.3,1.4) then put x= 'Rounded' ;

end;

run;

Anna_nag
Obsidian | Level 7

Thanks!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1127 views
  • 1 like
  • 2 in conversation