BookmarkSubscribeRSS Feed
mlogan
Lapis Lazuli | Level 10

Hi There,

I am trying to convert a Character value ($9.) to Numeric. As an example In sas table my Character value looks like $400.00. In my output table all I am seeing under the new column (numeric_var) is a (.)

Can someone help he with the code please.

 

 

DATA Apple.Financial_Report11;
SET Apple.Financial_Report;
numeric_var = input(old_Var, 9.);
RUN;

 

Thanks,

 

1 REPLY 1
Reeza
Super User
Try the informat of dollar9.
The informat should reflect what the variable currently looks like and apply a format to show how you want it displayed.

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
  • 870 views
  • 0 likes
  • 2 in conversation