BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Lost_Gary
Quartz | Level 8

Seems like a very basic question, but on a Monday morning, I am struggling with this.  Trying to convert from Char to Numeric.  

Here is my code and my result:

 

num = input(char,8.3);

 

Char Num
61.93 61.93
90 0.09
76.88 76.88

 

why does 90 keep turning into .09?  And how do i get around this?

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Why did you tell SAS to imply a decimal point before the last three digits if that was not what you wanted it to do?  That is for when you stored the strings without the decimal point to save one byte of storage.

 

Just use a normal informat.  The INPUT() function does not care if you use a width on the informat that is larger then the length of string being read.  32 is the maximum width for numeric informat.

num = input(char,32.);

 

View solution in original post

1 REPLY 1
Tom
Super User Tom
Super User

Why did you tell SAS to imply a decimal point before the last three digits if that was not what you wanted it to do?  That is for when you stored the strings without the decimal point to save one byte of storage.

 

Just use a normal informat.  The INPUT() function does not care if you use a width on the informat that is larger then the length of string being read.  32 is the maximum width for numeric informat.

num = input(char,32.);

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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