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