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: Save the Date

 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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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