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

HI I have a column called Claim, I want to create a new column New_claim as shown below  

 

ClaimNew_Claim
0.000000270
-0.00003450
-0.000000660
0.0000450
-0.000090
0.0000000560
-0.000001230
1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Are you just looking for the ROUND function?

It is hard to tell from your example if you want to round the value to integers?

new_claim = round(claim,1);

Or perhaps to hundredths?

new_claim = round(claim,0.01);

 

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

Are you just looking for the ROUND function?

It is hard to tell from your example if you want to round the value to integers?

new_claim = round(claim,1);

Or perhaps to hundredths?

new_claim = round(claim,0.01);

 

jklaverstijn
Rhodochrosite | Level 12

Indeed we need to know the exact rule to be applied. Besides ROUND() there are also INT() and FUZZ().  Depending on the requirements one can pick and choose.

 

- Jan.

Reeza
Super User

Depending on what you're doing this may be relevant. 

If that value is calculated, it may be easier to change to calculation. 

http://support.sas.com/documentation/cdl/en/lrcon/69852/HTML/default/viewer.htm#p0ji1unv6thm0dn1gp4t...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 1273 views
  • 1 like
  • 4 in conversation