Does this solution requires that I name every variable? Or is the "name" in your example a dictionary lookup keyword? ie How do I get this to work on all my variables in the dataset (1743 of them).
Thank you!
Joyce
"Name" and "Label" are variables in the dictionary.columns table.
Note the the Libname and Memname are all uppercase in the dictionary table. If you use Libname='Work' it fails as the libname is "WORK" in the table.
It is not necessary that all variables in dataset should have label. This solution would print label if available.
In the below table, provide libname and table to the macro variables and rest of the code should work itself.
%let _libname=;
%let _table=;
proc sql noprint;
select catt( name,'=',quote( catt(label,' (',name,')') ) )
into : embed_names_into_labels separated by ' '
from dictionary.columns
where libname="&_libname" and memname="&_table" and not missing(label);
quit;
But above reply has a point that saying why do you need such a wide report.
data temp / view = temp;
set &_libname..&_table;
label &embed_names_into_labels;
run;
proc print data=temp label; run;
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.