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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 743 views
  • 1 like
  • 2 in conversation