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

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