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: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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