Is there a way to get SAS to round a number (ex. sum, product, quotient) to the nearest whole number, nearest tenth, nearest hundredth, etc. after adding, multiplying, or dividing a series of numbers?
Fully agree with @PeterClemmensen
Round to the Nearest Whole Number
newvar = round(var,1)
Round to the Nearest Tenth
newvar = round(var,.1)
Round to the Nearest Hundredth
newvar = round(var,.01)
...
View solution in original post
Use the Round Function?
And one of the fun things with the SAS Round function is you can round to other multiples such as 7 or 0.3 if that is needed.
newvar = round(var, 7);
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.