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

dear all,

i have a file with NO delimiters.

I can read it in by using

input @001 xxx

        @010 yyyy

     ..........

but when there is a column added i need to re-calculate the positions :smileyconfused:

anyone an idea how to avoid this?

i start testing by using LENGTH or ATTRIB, informat, ...  before the input statement (possible with delimited data) . . . without any luck.

data have;

  attrib v1 lengt=$4  ....  v2 ....;

input v1 v2;

run;

GreetZ,

Herman

1 ACCEPTED SOLUTION

Accepted Solutions
Scott_Mitchell
Quartz | Level 8

It is hard to assume anything based on the volume of data you have provided.

Are the fields supposed to be fixed width?  If not, how do you know where each field ends?

The following should be pretty self explanatory.

data want;

infile datalines;

INPUT @1 var1 $2.

      var2 6.

      var3 $8.

;

datalines;

BE123456AAA

NL987654BBBBBBB

;

run;

View solution in original post

3 REPLIES 3
Scott_Mitchell
Quartz | Level 8

Can you provide some sample data?

Jaheuk
Obsidian | Level 7

sas.bmp

Scott_Mitchell
Quartz | Level 8

It is hard to assume anything based on the volume of data you have provided.

Are the fields supposed to be fixed width?  If not, how do you know where each field ends?

The following should be pretty self explanatory.

data want;

infile datalines;

INPUT @1 var1 $2.

      var2 6.

      var3 $8.

;

datalines;

BE123456AAA

NL987654BBBBBBB

;

run;

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
  • 3 replies
  • 1174 views
  • 0 likes
  • 2 in conversation