<?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: Proc Freq nlevels in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10456#M1002</link>
    <description>Hi: &lt;BR /&gt;
&lt;BR /&gt;
I notice that the libref MERBONUS was created with the V8 engine. Is it possible that you are still running SAS 8?&lt;BR /&gt;
&lt;BR /&gt;
I know that NLEVELS works with SAS 9. I can't remember whether it was an available option in SAS 8 or not. Tech Support could answer that question for sure. I no longer have SAS 8 to test with.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Fri, 11 Apr 2008 18:41:51 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-04-11T18:41:51Z</dc:date>
    <item>
      <title>Proc Freq nlevels</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10452#M998</link>
      <description>Hi,&lt;BR /&gt;
       I am trying to get the level counts for the variable market in code listed below. But SAS gives me error. My sas version is SAS 9.1 TS Level1M3. &lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance,&lt;BR /&gt;
&lt;BR /&gt;
Amit&lt;BR /&gt;
&lt;BR /&gt;
code:&lt;BR /&gt;
&lt;BR /&gt;
rsubmit;&lt;BR /&gt;
libname try ' library location ' ;&lt;BR /&gt;
proc freq data=try.temp nlevels;&lt;BR /&gt;
        tables market;&lt;BR /&gt;
     run;&lt;BR /&gt;
 endrsubmit;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
error:&lt;BR /&gt;
&lt;BR /&gt;
ERROR 22-322: Syntax error, expecting one of the following: ;, (, COMPRESS,&lt;BR /&gt;
              DATA, FC, FORMCHAR, NOPRINT, ORDER, PAGE.&lt;BR /&gt;
ERROR 200-322: The symbol is not recognized and will be ignored.</description>
      <pubDate>Thu, 10 Apr 2008 23:48:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10452#M998</guid>
      <dc:creator>AmitKB</dc:creator>
      <dc:date>2008-04-10T23:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq nlevels</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10453#M999</link>
      <description>please post the log, from the line that says libname down to the error</description>
      <pubDate>Fri, 11 Apr 2008 12:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10453#M999</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-04-11T12:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq nlevels</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10454#M1000</link>
      <description>Here is the log from actual program&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
5    rsubmit;&lt;BR /&gt;
NOTE: Remote submit to UNIXBOX commencing.&lt;BR /&gt;
152  libname merbonus  '/intl/iimis1/intl_mr/abothra/merchant/bonus';&lt;BR /&gt;
NOTE: Libref MERBONUS was successfully assigned as follows:&lt;BR /&gt;
      Engine:        V8&lt;BR /&gt;
      Physical Name: /intl/iimis1/intl_mr/abothra/merchant/bonus&lt;BR /&gt;
153&lt;BR /&gt;
154  proc freq data=merbonus.exceldata nlevels ;&lt;BR /&gt;
                                                            ------- -&lt;BR /&gt;
                                                           22      200&lt;BR /&gt;
ERROR 22-322: Syntax error, expecting one of the following: ;, (, COMPRESS,&lt;BR /&gt;
              DATA, FC, FORMCHAR, NOPRINT, ORDER, PAGE.&lt;BR /&gt;
ERROR 200-322: The symbol is not recognized and will be ignored.&lt;BR /&gt;
155         tables market /noprint ;&lt;BR /&gt;
156       run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
NOTE: PROCEDURE FREQ used:&lt;BR /&gt;
      real time           0.00 seconds&lt;BR /&gt;
      cpu time            0.00 seconds&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Remote submit to UNIXBOX complete.</description>
      <pubDate>Fri, 11 Apr 2008 17:21:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10454#M1000</guid>
      <dc:creator>AmitKB</dc:creator>
      <dc:date>2008-04-11T17:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq nlevels</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10455#M1001</link>
      <description>I think your noprint is in the wrong place&lt;BR /&gt;
&lt;BR /&gt;
try&lt;BR /&gt;
proc freq data=merbonus.exceldata nlevels noprint;&lt;BR /&gt;
  tables market ;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
vs.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc freq data=merbonus.exceldata nlevels ;&lt;BR /&gt;
  tables market /noprint;&lt;BR /&gt;
run;</description>
      <pubDate>Fri, 11 Apr 2008 17:55:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10455#M1001</guid>
      <dc:creator>darrylovia</dc:creator>
      <dc:date>2008-04-11T17:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Freq nlevels</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10456#M1002</link>
      <description>Hi: &lt;BR /&gt;
&lt;BR /&gt;
I notice that the libref MERBONUS was created with the V8 engine. Is it possible that you are still running SAS 8?&lt;BR /&gt;
&lt;BR /&gt;
I know that NLEVELS works with SAS 9. I can't remember whether it was an available option in SAS 8 or not. Tech Support could answer that question for sure. I no longer have SAS 8 to test with.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 11 Apr 2008 18:41:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Freq-nlevels/m-p/10456#M1002</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-04-11T18:41:51Z</dc:date>
    </item>
  </channel>
</rss>

