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 :).
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 lock in 2025 pricing—just $495!
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.