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);

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1732 views
  • 4 likes
  • 4 in conversation