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

I am trying to get several files that have the same layout in, but it will only keep data from the last file.

 

(note separate folders and file extensions)

 

Cannot figure it out!

 

data myfile;
infile   "/microdata/file1.prn" lrecl=430 missover
infile   "/microdata/otherfolder/file2.txt" lrecl=430 missover
infile   "/microdata/anotherfolder/file3.txt" lrecl=430 missover
        @119    AGE                     3.              /*      Age of respondent   */
        @122    SEX                     $1.             /*      Sex of respondent.      */
run;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Might also try

filename ToRead ("/microdata/file1.prn", "/microdata/otherfolder/file2.txt",  "/microdata/anotherfolder/file3.txt");

and use

 

INFILE ToRead lrecl=430 missover;

 

There may be issues caused by column headers in the data files if present.

View solution in original post

2 REPLIES 2
AMSAS
SAS Super FREQ

Hi,

 

Take a look at the MEMVAR & FILEVAR options for the infile statement

Take a look at examples 10 & 13


ballardw
Super User

Might also try

filename ToRead ("/microdata/file1.prn", "/microdata/otherfolder/file2.txt",  "/microdata/anotherfolder/file3.txt");

and use

 

INFILE ToRead lrecl=430 missover;

 

There may be issues caused by column headers in the data files if present.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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