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

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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