<?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: CNTLIN FORMATS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136787#M36883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;I was thinking I could use label on any of the variables on the Keep statement!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jun 2014 21:26:53 GMT</pubDate>
    <dc:creator>robertrao</dc:creator>
    <dc:date>2014-06-10T21:26:53Z</dc:date>
    <item>
      <title>CNTLIN FORMATS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136785#M36881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am using CNTLIN formats&lt;/P&gt;&lt;P&gt;I have a couple of questions regarding.&lt;/P&gt;&lt;P&gt;can you explain why the provider=label???&lt;/P&gt;&lt;P&gt;if I have several other variables &lt;SPAN style="color: #ff0000;"&gt;X, Y, Z&lt;/SPAN&gt; in the KEEP which variable of those will get the "=label"????? is there a preference ?&lt;/P&gt;&lt;P&gt;secondly what does that =label do????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test1(rename=(providerkey=start provider=label));&lt;/P&gt;&lt;P&gt;set dim_provider(keep=providerkey provider /*&lt;SPAN style="color: #ff0000;"&gt;X Y Z*/&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;fmtname='attprovkey';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc format cntlin=test1;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data both;&lt;/P&gt;&lt;P&gt;set hsp_acct_2;&lt;/P&gt;&lt;P&gt;attending_provider=put(providerattendingkey, attprovkey.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 20:18:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136785#M36881</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2014-06-10T20:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: CNTLIN FORMATS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136786#M36882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROC Format requires a variable named LABEL to describe the display associated with the values in the Start and End. Variables that are not expected by Proc Format are ignored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A better way to understand what is required may be to make a short custom format and use the CNTLOUT option to create a data set that describes the format. Then you will see a bit more clearly what the variables associated with a CNTLIN data set do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 20:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136786#M36882</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-06-10T20:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: CNTLIN FORMATS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136787#M36883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;I was thinking I could use label on any of the variables on the Keep statement!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 21:26:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136787#M36883</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2014-06-10T21:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: CNTLIN FORMATS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136788#M36884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what you are attempting in the long run.&lt;/P&gt;&lt;P&gt;There may be a case of mistaken identity. For CNTLIN data sets Label is an expected Variable. In many other places Label is the Text associated with a variable name. Yes any variable can have a label associeated. But the Variable named Label, which is a character variable, is what holds the text associeated with the values.&lt;/P&gt;&lt;P&gt;Did you create the CNTLout data set and look at it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 23:20:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136788#M36884</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-06-10T23:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: CNTLIN FORMATS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136789#M36885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking at an example in the SAS documentation should help. Also try running the example program and examining the CNTLIN dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n1e19y6lrektafn1kj6nbvhus59w.htm"&gt;http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n1e19y6lrektafn1kj6nbvhus59w.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 02:06:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/CNTLIN-FORMATS/m-p/136789#M36885</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2014-06-11T02:06:18Z</dc:date>
    </item>
  </channel>
</rss>

