/* data1, data2, data3, data4*/
%let readFrom = data1;
data thisdata;
set &readfrom;
run;
Hello team,
On the code on the top, The macro variable readFrom reads from data1, data2, data3 and data4. Each time we replace readfrom variable macro with data1, data2, data3 and data4
I want to save the result thisdata in a table , which is read from data1 and then append to it thisdata when readfrom variable is replaced by data2.
We keep the result data1, then append to it data2, then data3 and data4.
Any help is greatly appreciated.
Regards,
blueblue
... View more