I have the following datasets:
inv01_2001_1;
inv02_2001_2:
inv02_2001_3; and so on
Is there such a macro as
%let inv01_2001_1,inv01_2001_2,inv02_2001_3 = inv;
Then call the macro in my statement such as
data inventory1;
set inventory;
?How would i call the macro into my data step. I want to avoid listing all of my inventories in the datastep
inv01_2001_1;
inv02_2001_2:
inv02_2001_3; and so on
Is there such a macro as
%let inv01_2001_1,inv01_2001_2,inv02_2001_3 = inv;
Then call the macro in my statement such as
data inventory1;
set inventory;
?How would i call the macro into my data step. I want to avoid listing all of my inventories in the datastep