I have a data set with files names. These file names are text files and I want to import them create a master dataset that includes all the files. Here is my code:
%macro create_data();
proc sql noprint;
select count(*) into :count from Filenames;* Filenames is dataset with Filenames;
select fname into :filelist separated by " " from Filenames ;
quit;
%do i = 1 %to &count.;
*import file iteratively;
proc import datafile='c:\temp\filelist[i].txt' *stuck here;
out=subset
dbms=dlm
replace;
delimiter=' ';
run;
*stuck here as well. Trying to concatenate datasets iteratively to create master;
data master;
set subset;
run;
%end;
%mend;