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;
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.