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;
Use the FLOOR function
x_new=floor(x/1000)*1000;
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
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.