🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-04-2020 05:14 AM
(898 views)
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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,
- Tags:
- proc datasets
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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,
- Tags:
- proc datasets
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Many thanks. Best too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content