They all start with D? Do you have other datasets in the library that you need to exclude?
You can do it without a macro, using the colon short cut. This will append all datasets that start with the letter D.
data want;
set D:;
run;
If you need a macro and want to use proc append, I would use the following method:
1. Write macro to use PROC APPEND
2. Obtain list of dataset name from sashelp.vtable -> store in a dataset
3. Use call execute to execute macro from #1.
They all start with D? Do you have other datasets in the library that you need to exclude?
You can do it without a macro, using the colon short cut. This will append all datasets that start with the letter D.
data want;
set D:;
run;
If you need a macro and want to use proc append, I would use the following method:
1. Write macro to use PROC APPEND
2. Obtain list of dataset name from sashelp.vtable -> store in a dataset
3. Use call execute to execute macro from #1.
Why did you mark your answer as correct?
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.