I saw a loop code the other day. And it generate files of output_&i (i.e. output_1, output_2,..., output_n). At the end, it row bind all the files as: data all_results;
set output_:;
run; It seems that we could list files output_1, output_2, ... , output_n in a simple way by using ":" as output_:, so I tried to row bind my files that all end up with "_output" (i.e. 1_output, 2_output, 3_output) in a similar way: data all_results;
set :_output;
run; But it failed. I'd like to know how to write the code in the right way. Thanks!
... View more