BookmarkSubscribeRSS Feed
PurushReddy
Fluorite | Level 6
Data num;
A=round (1234.56789,1111);
Run;

Output is:1111
Please give me clarification How it comes 1111
1 REPLY 1
Kurt_Bremser
Super User

When you use 1111 as the second argument, multiples of 1111 are used as values to be rounded to.

Since 1234 is between 1111 (= 1111 * 1) and 2222 (= 1111 * 2), we need to look to which of those two numbers 1234 is closer, and that is 1111 (abs(1234 - 1111) = 123, while abs(1234 - 2222) = 988).

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

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
  • 1 reply
  • 685 views
  • 1 like
  • 2 in conversation