BookmarkSubscribeRSS Feed
Ksharp
Super User

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;

Ksharp_0-1669879910582.png

 

Ksharp
Super User

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;

Ksharp_0-1669880490508.png

 

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 16 replies
  • 5504 views
  • 4 likes
  • 8 in conversation