BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
luvscandy27
Quartz | Level 8

 I am having a hard time finding out how to drop the zeros after round. For example, i have data like 842855. After using the round function, the 

data is like this 843000. however, I would like the data to show 843.

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Divide by 1000?

 

Picture format?

--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

Divide by 1000?

 

Picture format?

--
Paige Miller
A_Kh
Lapis Lazuli | Level 10

I don't think 843 would be meaningful expression for 842855 after rounding. However, if you really need 3 digits number then you could divide the value (843000) by 1000, or whatever number of zeros at the end of your actual value.

data have;
a=842855;
want= round(a,1000)/1000;
proc print; run; 
PaigeMiller
Diamond | Level 26

@A_Kh wrote:

I don't think 843 would be meaningful expression for 842855 after rounding.


 

At least where I work, we sometimes express dollar amounts as an integer representing thousands of dollars.

--
Paige Miller

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!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 591 views
  • 0 likes
  • 3 in conversation