<?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 Proc Format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430595#M68623</link>
    <description>&lt;P&gt;So lets say I have a Age group column with different ages. Can I group the data using proc format, in a way where if the data is less than &amp;nbsp;18 it formats it to="less than 18" between 18 and 64="18-64" and 64 plus "64 plus".&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jan 2018 19:00:07 GMT</pubDate>
    <dc:creator>hudasaeb</dc:creator>
    <dc:date>2018-01-24T19:00:07Z</dc:date>
    <item>
      <title>Proc Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430595#M68623</link>
      <description>&lt;P&gt;So lets say I have a Age group column with different ages. Can I group the data using proc format, in a way where if the data is less than &amp;nbsp;18 it formats it to="less than 18" between 18 and 64="18-64" and 64 plus "64 plus".&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 19:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430595#M68623</guid>
      <dc:creator>hudasaeb</dc:creator>
      <dc:date>2018-01-24T19:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430596#M68624</link>
      <description>&lt;P&gt;start with&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use keywords &lt;STRONG&gt;low&lt;/STRONG&gt; and &lt;STRONG&gt;high&lt;/STRONG&gt; to specify range&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;low&lt;/STRONG&gt;&amp;lt;18&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;64&amp;gt;&lt;STRONG&gt;high&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 19:01:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430596#M68624</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-01-24T19:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430598#M68625</link>
      <description>&lt;P&gt;proc format;&lt;BR /&gt;value use&lt;BR /&gt;low &amp;lt;18 = 'x'&lt;BR /&gt;18&amp;lt;64 = 'y'&lt;BR /&gt;64&amp;lt;high = 'z'&lt;BR /&gt;;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 19:04:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430598#M68625</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-01-24T19:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430601#M68627</link>
      <description>&lt;P&gt;Setting up the format:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc format;&lt;/P&gt;
&lt;P&gt;value agerange low - &amp;lt;18 = "less than 18"&lt;/P&gt;
&lt;P&gt;18 - &amp;lt; 64 = "18 to &amp;lt;64"&lt;/P&gt;
&lt;P&gt;64-high = "64+"&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the format for grouping (just one example):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=have;&lt;/P&gt;
&lt;P&gt;tables age;&lt;/P&gt;
&lt;P&gt;format age agerange.;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 19:08:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Format/m-p/430601#M68627</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-01-24T19:08:51Z</dc:date>
    </item>
  </channel>
</rss>

