Hello SAS experts,
I have a list of datasets with the same name and variables structure, and I want to add them all in a single one.
this doesn't work:
data vzk_2020;
do i=1 to 8;
set vzk_2020_i;
end;
run;
what's the correct way?
regards,
PY
This is where you need a macro. You need one SET statement, but multiple datasets in it.
%macro dsnames; %do i = 1 %to 8; vzk_2020_&i. %end; %mend; data vzk_2020; set %dsnames ; run;
Take note where I placed semicolons, and where I omitted them.
View solution in original post
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.