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

Hi, If I would like to round up or down for a specific variable in a dataset under these two conditions, what would be the best/easiest way to do this in SAS?

 

For decimal value outcomes < X.5, round down to the nearest integer

For decimal value outcomes ≥ X.5, round up to the nearest integer

 

I've seen it done as a do loop, but that seems overly complicated.

 

Any help is much appreciated, thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

This is exactly what the Round Function does?

 

data have;
   do x=1 to 10;
      y=x*rand('uniform');
      output;
   end;
run;

data want;
   set have;
   z=round(y);
run;

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

This is exactly what the Round Function does?

 

data have;
   do x=1 to 10;
      y=x*rand('uniform');
      output;
   end;
run;

data want;
   set have;
   z=round(y);
run;
ballardw
Super User

And for extra added fun you can actually round to the nearest multiple of a given number. The default is 1 if not supplied.

 

data have;
   do x=1 to 10;
      z= rand('uniform');
      y1= round(x*z,1);
      y2= round(x*z,2);
      y3= round(x*z,.7);
      y4= round(x*z,2.5);
      output;
   end;
run;
PaigeMiller
Diamond | Level 26

@kmardinian wrote:

For decimal value outcomes < X.5, round down to the nearest integer

For decimal value outcomes ≥ X.5, round up to the nearest integer


This is different than the title of this thread, and if you really mean the title of this thread, then the answer given is not correct. Just saying...

--
Paige Miller

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 858 views
  • 0 likes
  • 4 in conversation