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

I want to check the output of using the input funcion, the following is my codes:

DATA a;
INPUT s ;
s2=input(s,3.0);
DATALINES;
5
6
001
2.3
;
RUN;

it returns a missing value for s2. I can't find the error in my codes, could anyone help me?

2016-08-28_115640.png

 

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Jim identified the right issue.  To make S a character variable, you could try:

 

input s $;

 

Then just as a learning experience, I would suggest you add to the program and also test:

 

s3 = input(s, 3.1);

View solution in original post

3 REPLIES 3
Jim_G
Pyrite | Level 9

Line 2 of your code:   Input s ;    Makes s a numeric variable.

 

Try on line 3     s2 = put(s,3.0);   * converts s (numeric) to a character variable s2

 

Jim

Astounding
PROC Star

Jim identified the right issue.  To make S a character variable, you could try:

 

input s $;

 

Then just as a learning experience, I would suggest you add to the program and also test:

 

s3 = input(s, 3.1);

Tom
Super User Tom
Super User

Because you are referencing a numeric variable where SAS expects a character value it is automatically converting the number into a character string for you.  It will use the BEST12. format to do this. So your when you read only the first three characters using 3.0 informat your will be reading only the leading spaces of the right aligned 12 character values.

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 25. 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
  • 3 replies
  • 1844 views
  • 4 likes
  • 4 in conversation