BookmarkSubscribeRSS Feed
rajeshalwayswel
Pyrite | Level 9

I need "a" value as "12.10" in numeric version not in character.

 

Required Output: a=12.10---------numeric variable

 

data a;
a=12.10;
/*b=put(a,best.);*/
/*c=put(a,5.2);*/
run;

1 REPLY 1
PaigeMiller
Diamond | Level 26

If you need a specific format in your output, you use the proper format. You can't force a numeric variable in SAS to have the appearance you want any other way.

 

 

data a;
    a=12.10;
    format a 5.2;
run;
--
Paige Miller

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 999 views
  • 1 like
  • 2 in conversation