Since you have already add options nolable;
there is no need to add LABEL option in PROC PRINT.
proc print data=test label noobs; run; -------> proc print data=test noobs; run;
options nolabel ;
is just suppress the label ,not remove it .
If you want remove it .
I am afraid you need some other code :
ods output summary=test;
proc means data=sashelp.class ;
class sex; var height;
run;
ods exclude none;
proc datasets library=work nolist nodetails;
modify test;
attrib _all_ label=' ';
quit;
proc sql;
select name, format, label
from dictionary.columns
where upcase(libname)='WORK' and
upcase(memname)='TEST';
quit;
proc print data=test label noobs;
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.