I have 243 data sets with names as:
fixed11
fixed21
fixed31
fixed41
...
fixed2411
fixed2421
fixed2431
All of them have the same variable names, and number of columns.
How can I combine them (one above the other) in one data set avoiding several data steps?
Assuming you want to append (stack) all the tables, use the colon shortcut.
data want;
set fixed: ;
run;
If you want them merged, ie the variables side by side that's a different question.
Assuming you want to append (stack) all the tables, use the colon shortcut.
data want;
set fixed: ;
run;
If you want them merged, ie the variables side by side that's a different question.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.