<?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 error in proc format code in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579071#M164330</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;What is wrong with this proc format code??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get an error&lt;/P&gt;
&lt;P&gt;4917 low &amp;lt;- -5000 = '&amp;lt;-5000'&lt;BR /&gt;-&lt;BR /&gt;22&lt;BR /&gt;200&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: (, ',', -, =. &lt;BR /&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value ffmt
. = 'Missing'
low &amp;lt;- -5000 = '&amp;lt;-5000'
-5000 &amp;lt;- 0 = '[-5000,0)'
0 &amp;lt;- 1000 = '[0, 1000)'
1000 &amp;lt;- 5000 = '[1000 , 5000)'
5000 &amp;lt;- 10000 = '[5000, 10000)'
10000&amp;lt;-high='&amp;gt;10000';
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 05 Aug 2019 05:45:32 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2019-08-05T05:45:32Z</dc:date>
    <item>
      <title>error in proc format code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579071#M164330</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;What is wrong with this proc format code??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get an error&lt;/P&gt;
&lt;P&gt;4917 low &amp;lt;- -5000 = '&amp;lt;-5000'&lt;BR /&gt;-&lt;BR /&gt;22&lt;BR /&gt;200&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: (, ',', -, =. &lt;BR /&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value ffmt
. = 'Missing'
low &amp;lt;- -5000 = '&amp;lt;-5000'
-5000 &amp;lt;- 0 = '[-5000,0)'
0 &amp;lt;- 1000 = '[0, 1000)'
1000 &amp;lt;- 5000 = '[1000 , 5000)'
5000 &amp;lt;- 10000 = '[5000, 10000)'
10000&amp;lt;-high='&amp;gt;10000';
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Aug 2019 05:45:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579071#M164330</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-08-05T05:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: error in proc format code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579075#M164334</link>
      <description>&lt;P&gt;Using &amp;lt;- in &lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;low &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;-&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt; &lt;SPAN class="token number"&gt;-5000&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'&amp;lt;-5000&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;is the problem. Which value starts the range, if you exclude the lowest value?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 06:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579075#M164334</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-08-05T06:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: error in proc format code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579086#M164339</link>
      <description>&lt;P&gt;I updated the format &lt;CODE class=" language-sas"&gt;low - -5000&lt;/CODE&gt; by removing the &amp;lt; and it works, please check.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value ffmt
. = 'Missing'
low - -5000 = '&amp;lt;-5000'
-5000 &amp;lt;- 0 = '[-5000,0)'
0 &amp;lt;- 1000 = '[0, 1000)'
1000 &amp;lt;- 5000 = '[1000 , 5000)'
5000 &amp;lt;- 10000 = '[5000, 10000)'
10000&amp;lt;-high='&amp;gt;10000';
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Aug 2019 09:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/error-in-proc-format-code/m-p/579086#M164339</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-08-05T09:11:18Z</dc:date>
    </item>
  </channel>
</rss>

