<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Label Doesn't Show in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620428#M182308</link>
    <description>&lt;P&gt;Please try the below code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
	label n = "num"
	c = "char";
	input n c $;
cards;
1 123
2 xyz
run;

proc contents data=test; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 28 Jan 2020 04:42:40 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2020-01-28T04:42:40Z</dc:date>
    <item>
      <title>Label Doesn't Show</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620425#M182306</link>
      <description>&lt;P&gt;Would somebody please explain why the label is not labeling the variables?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
	label n = "num";
	label c = "char";
	input n c $;
cards;
1 123
2 xyz
run;&lt;BR /&gt;
proc contents data=test; run;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;Proc contents output has no labels.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test1.gif" style="width: 273px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35644iBAC2C4CDDAC767E6/image-size/large?v=v2&amp;amp;px=999" role="button" title="test1.gif" alt="test1.gif" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you very much.&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Jan 2020 04:14:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620425#M182306</guid>
      <dc:creator>chinli72</dc:creator>
      <dc:date>2020-01-28T04:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Label Doesn't Show</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620428#M182308</link>
      <description>&lt;P&gt;Please try the below code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
	label n = "num"
	c = "char";
	input n c $;
cards;
1 123
2 xyz
run;

proc contents data=test; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Jan 2020 04:42:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620428#M182308</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2020-01-28T04:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Label Doesn't Show</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620429#M182309</link>
      <description>&lt;P&gt;Please put your input statement at the beginning followed by your label statement. Let's see, if it works&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 04:47:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620429#M182309</guid>
      <dc:creator>Jebastin</dc:creator>
      <dc:date>2020-01-28T04:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Label Doesn't Show</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620432#M182311</link>
      <description>&lt;P&gt;Looks like you have turned of the LABEL system option.&lt;/P&gt;
&lt;P&gt;Check it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option=label;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Turn it back on.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options label;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Jan 2020 05:33:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620432#M182311</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-28T05:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Label Doesn't Show</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620480#M182330</link>
      <description>You nailed it on the head. The labels are showing now. Thank you and all who helped.</description>
      <pubDate>Tue, 28 Jan 2020 13:06:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Label-Doesn-t-Show/m-p/620480#M182330</guid>
      <dc:creator>chinli72</dc:creator>
      <dc:date>2020-01-28T13:06:08Z</dc:date>
    </item>
  </channel>
</rss>

