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);
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
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.