I am reading in the following dataset:
data list;
set project.daily_list;
run;
It contains a list of names of other data sets. Currently I am reading in "NBBOM_20140102" as follows:
data X;
set nbbo.NBBOM_20140102;
run;
Question 1: How can I set "nbbo.NBBOM_20140102" by referring to the list? Question 2: How can I do this in a loop? I'd like to set all the datasets in the nbbo column one-by-one via a loop.