BookmarkSubscribeRSS Feed
DerekAdams
Calcite | Level 5
Hi all.
When using eg 4.1 wizards there is a label that gets assigned to the output dataset as in the example below. Is there any way to turn this feature off?

PROC MEANS DATA=WORK.SORTTempTableSorted
FW=12
PRINTALLTYPES
CHARTYPE
NWAY
VARDEF=DF

SUM NONOBS ;

Thanks.
VAR vacancy;
CLASS region / ORDER=UNFORMATTED ASCENDING;
CLASS nhu / ORDER=UNFORMATTED ASCENDING;

OUTPUT OUT=WORK.STOCKSMRY(LABEL="Summary Statistics for WORK.MANAGEDSTOCK")

SUM()=

/ AUTONAME AUTOLABEL WAYS INHERIT
;
RUN;
2 REPLIES 2
ChrisHemedinger
Community Manager
No, there isn't a way to turn off this data set label. I suppose you can always remove it with a PROC DATASETS step if it's in your way.

[pre]
proc datasets lib=work nolist ;
modify stocksmry(label="");
run;
[/pre]
Chris
It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
DerekAdams
Calcite | Level 5
Thanks Chris.

I had previously inserted code to do this but you have to manually add the data to the designer window and then link to the summary statistics, (or whatever object you are using), object.

I was hoping eg would do this for me, (I'm being lazy), but looks ike it won't so I will continue to do this.

Derek

Wellington, NZ

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 696 views
  • 0 likes
  • 2 in conversation