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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.