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?
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.