BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SASISA
Calcite | Level 5

Hello,

I'm new on SAS-Studio. I don't understand why this programme don't work on SAS Studio, labels dosen't work with a proc contents statement (but it works well with SAS local 9.4). Many Thanks.

 

 

proc contents data=world;
Label pop85='population in 1985';
run;

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

Hi @SASISA 

 

If you want to modify a variable label you can use a proc datasets:

proc datasets lib=work;
	modify world;
	label pop85='population in 1985';
run;

Hope this helps!

 

Best,

 

View solution in original post

3 REPLIES 3
ed_sas_member
Meteorite | Level 14

Hi @SASISA 

 

If you want to modify a variable label you can use a proc datasets:

proc datasets lib=work;
	modify world;
	label pop85='population in 1985';
run;

Hope this helps!

 

Best,

 

SASISA
Calcite | Level 5
Many thanks. Best too.

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!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 638 views
  • 1 like
  • 2 in conversation