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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2 replies
  • 611 views
  • 2 likes
  • 3 in conversation