BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Ronein
Meteorite | Level 14

Hello

I want to create a new column called X_New .

The value in X_New column will be the rounded down value of column X.

The expected values are:

X=4000 ,X_New=4000

X=4200,X_New=4000

X=4500, X_New=4000

X=4600, X_New=4000

X=4900, X_New=4000

X=5000, X_New=5000

X=5100, X_New=5000

 

What is the way to round down by 1000 ?

 

data have;
input x;
cards;
4000
4200
4500
4600
4900
5000
5100
0
.
;
Run;

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Use the FLOOR function

 

x_new=floor(x/1000)*1000;
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Use the FLOOR function

 

x_new=floor(x/1000)*1000;
--
Paige Miller
Rick_SAS
SAS Super FREQ

As Paige says, the FLOOR function will round all numbers toward negative infinity.

 

For negative values, some people prefer to round toward zero. If you want to round toward zero, use the INT function:

x_new=int(x/1000)*1000;

 For more information about rounding, see 

"Rounding up, rounding down"

 

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
  • 2 replies
  • 516 views
  • 4 likes
  • 3 in conversation