I would like to use all of the text files from a directory as multiple sources for a SAS DI job. I know how to do this in code using a filename statement piping out to a directory, creating a SAS dataset from this file and using a macro (excuse the syntax): data dirlist; infile "pipedfile" run; %macro readwrite(filename) data dynamicsasname; infile "filename"; run; %mend; data _null_: set dirlist; call execute(%readwrite(filename)) run; How can I do this in DI using the GUI interface?
... View more