Hi Team,
i have 100 data sets how to find out only data set name
Advance Thanks
What do you want to do with those names? Put them in a macro variable?
If so
proc sql;
select memname into :DataSets separated by ' '
from dictionary.tables
where libname='SASHELP';
quit;
%put &DataSets;
ds1 ds2 ds3 ds4 ..................................................................................ds100 like that
Have you tried my posted code?
alternatively please try
data want;
set sashelp.vtable;
run;
Hello @nayab_shaik
Would you please be kind enough to go back to your original post and provide a meaningful title instead of "sas"? Thank you.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
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.