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).

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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