BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
PierreYvesILY
Pyrite | Level 9

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

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

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

3 REPLIES 3
Kurt_Bremser
Super User

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.

PierreYvesILY
Pyrite | Level 9
thank you Kurt, have a nice day!
Ksharp
Super User
data vzk_2020;
set vzk_2020_1 - vzk_2020_8 ;
run;

OR Just:
data vzk_2020;
set vzk_2020_: ;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 3 replies
  • 622 views
  • 1 like
  • 3 in conversation