<?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: In a proc format picture definition in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66732#M19075</link>
    <description>It's just because I cannot "cut and paste" the whole code. I don't know where the wrong is. Whenever, I cut and paste the posted message is just part of the original message I intended to post!&lt;BR /&gt;
&lt;BR /&gt;
The part posted is the part I don't understand. The other part, you can imagine, is just like a normal definition for a proc format picture.&lt;BR /&gt;
&lt;BR /&gt;
I don't undertand the following way to express a range for a value in a picture definition.&lt;BR /&gt;
&lt;BR /&gt;
I just show the uplimit of a range for a value: ([0-9])3, say. &lt;BR /&gt;
&lt;BR /&gt;
Would you please tell me how I can understand that? Thanks!</description>
    <pubDate>Fri, 20 May 2011 16:40:16 GMT</pubDate>
    <dc:creator>andrew0845</dc:creator>
    <dc:date>2011-05-20T16:40:16Z</dc:date>
    <item>
      <title>In a proc format picture definition</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66730#M19073</link>
      <description>like 4&amp;lt;-&amp;lt;([0-9])0='xx'  &amp;lt;-What does ([0-9])0 mean?</description>
      <pubDate>Wed, 18 May 2011 01:32:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66730#M19073</guid>
      <dc:creator>andrew0845</dc:creator>
      <dc:date>2011-05-18T01:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: In a proc format picture definition</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66731#M19074</link>
      <description>Interesting syntax&lt;BR /&gt;
but it doesn't look valid for a picture range definition!&lt;BR /&gt;
 &lt;BR /&gt;
Where did you see it?</description>
      <pubDate>Fri, 20 May 2011 12:33:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66731#M19074</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2011-05-20T12:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: In a proc format picture definition</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66732#M19075</link>
      <description>It's just because I cannot "cut and paste" the whole code. I don't know where the wrong is. Whenever, I cut and paste the posted message is just part of the original message I intended to post!&lt;BR /&gt;
&lt;BR /&gt;
The part posted is the part I don't understand. The other part, you can imagine, is just like a normal definition for a proc format picture.&lt;BR /&gt;
&lt;BR /&gt;
I don't undertand the following way to express a range for a value in a picture definition.&lt;BR /&gt;
&lt;BR /&gt;
I just show the uplimit of a range for a value: ([0-9])3, say. &lt;BR /&gt;
&lt;BR /&gt;
Would you please tell me how I can understand that? Thanks!</description>
      <pubDate>Fri, 20 May 2011 16:40:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66732#M19075</guid>
      <dc:creator>andrew0845</dc:creator>
      <dc:date>2011-05-20T16:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: In a proc format picture definition</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66733#M19076</link>
      <description>I forgot to mention that where I saw it. I saw it at the e-book for SAS Advanced Prep. Thanks!</description>
      <pubDate>Fri, 20 May 2011 16:42:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66733#M19076</guid>
      <dc:creator>andrew0845</dc:creator>
      <dc:date>2011-05-20T16:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: In a proc format picture definition</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66734#M19077</link>
      <description>The original code is as follows:&lt;BR /&gt;
&lt;BR /&gt;
proc format;&lt;BR /&gt;
picture agegrp&lt;BR /&gt;
1-&amp;lt;([0-9])3='00 Youth'&lt;BR /&gt;
13-&amp;lt;([0-9])0='00 Teen'&lt;BR /&gt;
20-&amp;lt;([0-9])0='00 Adult'&lt;BR /&gt;
70-high='000 Senior';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&amp;lt; is the symbol for "smaller than". That is the way I can input the original code, otherwise, the most of part will disappear mysteriously after it is posted.&lt;BR /&gt;
&lt;BR /&gt;
What does ([0-9])3 and ([0-9])0 mean in the picture definition?&lt;BR /&gt;
&lt;BR /&gt;
Besides, if I only use &amp;lt; not -&amp;lt;, what would happend? Inclusive for the lower limit or upper limit?&lt;BR /&gt;
&lt;BR /&gt;
Thanks!</description>
      <pubDate>Fri, 20 May 2011 20:55:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/In-a-proc-format-picture-definition/m-p/66734#M19077</guid>
      <dc:creator>andrew0845</dc:creator>
      <dc:date>2011-05-20T20:55:32Z</dc:date>
    </item>
  </channel>
</rss>

