Be kind. First time posting... I used... data fakeset; length fref $8 fname $200; did = filename(fref,'Fake\Path'); did = dopen(fref); do i = 1 to dnum(did); fname = dread(did,i); output; end; did = dclose(did); did = filename(fref); keep fname; run; ...to generate 'fakeset' in my work folder with files from the Fake\Path directory. All of the files in Fake\Path are in .sas7bdat format. 'fakeset' looks like this... fname fake1.sas7bdat fake2.sas7bdat fake3.sas7bdat How do I import each file in Fake\Path using the fname I generated in 'fakeset'? I'd like all of the files imported, then set into one new data set in my work folder. I'm going to continue searching for a soltution as I know this has been done before (I'm sure). Thanks for the help
... View more