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

I have the following three data steps, each of which reads in two variables from the embedded raw data. The two variables are separated by THREE spaces in all cases. See SAS code below:

data Char;
   input name $ +2 income comma5.;
   datalines;
Tom   1,098
   ;
run;

data Num;
   input id +2 income comma5.;
   datalines;
123   1,098
   ;
run;

data Informat;
   input balance comma5. +3 income comma5.;
   datalines;
5,123   1,098
   ;
run;

As you can see, for the char and numeric variables, I need to do a +2 on the input pointer for the following informat to work; however, if the first variable uses an informat, it needs a +3 on the pointer. Can someone please explain this difference of pointer position?

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

The main difference is that the cursor is positioned differently when you read a value in LIST MODE than when you read it in FORMATTED MODE.  With FORMATTED MODE then an exact number of bytes are read.  With LIST MODE then next "word" on the line is read. 

 

If you want to specify an informat in-line in the INPUT statement and still use LIST MODE input then add the colon modifier before the informat.  When reading in list mode the width of the informat is ignored, the whole next "word" on the line is read.  So no need to add the 5 width to the COMMA informat specification.

 

data want;
   input name $ income :comma.;
datalines;
Tom   1,098
;

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

The main difference is that the cursor is positioned differently when you read a value in LIST MODE than when you read it in FORMATTED MODE.  With FORMATTED MODE then an exact number of bytes are read.  With LIST MODE then next "word" on the line is read. 

 

If you want to specify an informat in-line in the INPUT statement and still use LIST MODE input then add the colon modifier before the informat.  When reading in list mode the width of the informat is ignored, the whole next "word" on the line is read.  So no need to add the 5 width to the COMMA informat specification.

 

data want;
   input name $ income :comma.;
datalines;
Tom   1,098
;
kingcu
Fluorite | Level 6
Thanks, the colon modifier works like a charm.
Tom
Super User Tom
Super User

If you want to see how the pointing is positioned use the COLUMN= infile option.

17    data Char;
18       infile datalines column=col ;
19       input name $ @;
20       put col=;
21       input +2 income comma5.;
22    datalines;

col=5
NOTE: The data set WORK.CHAR has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds


24    ;
25
26    data Num;
27       infile datalines column=col ;
28       input id @;
29       put col=;
30       input +2 income comma5.;
31    datalines;

col=5
NOTE: The data set WORK.NUM has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


33    ;
34
35    data Informat;
36       infile datalines column=col ;
37       input balance comma5. @;
38       put col=;
39       input  +3 income comma5.;
40    datalines;

col=6
NOTE: The data set WORK.INFORMAT has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

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!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 641 views
  • 2 likes
  • 2 in conversation