BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
JackZ295
Pyrite | Level 9

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? 

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

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

3 REPLIES 3
ed_sas_member
Meteorite | Level 14

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)

...

ballardw
Super User

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: 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!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 3 replies
  • 1821 views
  • 4 likes
  • 4 in conversation