data all;
set "%summary";//(All dataset where data name is suffix with "summary")
run;I want to set all the data set if that suffix with summary.
Is there any way I can do that.
One way..
data onesuffix;
a=1;
run;
data two;
a=2;
run;
data threesuffix;
a=3;
run;
proc sql noprint;
select memname into :ds separated by ' '
from dictionary.tables
where libname='WORK' & memname like '%SUFFIX';
quit;
%put &ds.;
data want;
set &ds.;
run;
One way..
data onesuffix;
a=1;
run;
data two;
a=2;
run;
data threesuffix;
a=3;
run;
proc sql noprint;
select memname into :ds separated by ' '
from dictionary.tables
where libname='WORK' & memname like '%SUFFIX';
quit;
%put &ds.;
data want;
set &ds.;
run;
You are genius :).
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.