<?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 sql count problem in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131000#M35641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hope the below code meets your criteria&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data t;&lt;/P&gt;&lt;P&gt;input group pt $;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1 a&lt;/P&gt;&lt;P&gt;1 b&lt;/P&gt;&lt;P&gt;2 u&lt;/P&gt;&lt;P&gt;2 r&lt;/P&gt;&lt;P&gt;3 t&lt;/P&gt;&lt;P&gt;4 q&lt;/P&gt;&lt;P&gt;6 c&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*create a dummy dataset with groups and give the values as 0*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data dummy;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do group=1 to 6;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; count=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;/*&amp;nbsp;&amp;nbsp;&amp;nbsp; get the distinct count of the pt in each group*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table test as select count(distinct pt) as count ,group from t group by group;&lt;/P&gt;&lt;P&gt;/*merge the counts of the pt in each group with the dummy dataset which has all the groups*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table test2 as select coalesce(a.count,b.count) as count,b.group from test as a right join dummy as b on a.group=b.group;&lt;/P&gt;&lt;P&gt;/*generate the macro for each group by the below code*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select count into: n1-:n&amp;amp;sysmaxlong from test2;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put _user_;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Sep 2013 15:35:21 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2013-09-06T15:35:21Z</dc:date>
    <item>
      <title>proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130995#M35636</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 have a question.&lt;/P&gt;&lt;P&gt;there is a dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data t;&lt;/P&gt;&lt;P&gt;input group pt $;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1 a&lt;/P&gt;&lt;P&gt;1 b&lt;/P&gt;&lt;P&gt;2 u&lt;/P&gt;&lt;P&gt;2 r&lt;/P&gt;&lt;P&gt;3 t&lt;/P&gt;&lt;P&gt;4 q&lt;/P&gt;&lt;P&gt;6 c&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I have 6 groups. but for now group 5 have no patients and it will have patients later.&lt;/P&gt;&lt;P&gt;Now I need to count how many patients in each group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;select count(pt) into: n1 - :n6 from t group by group;&lt;/P&gt;&lt;P&gt;quit; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put &amp;amp;n1 &amp;amp;n2 &amp;amp;n3 &amp;amp;n4 &amp;amp;n5 &amp;amp;n6;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the log said " WARNING: Apparent symbolic reference N6 not resolved."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand why there is such a SAS warning there because SAS doesn't know there is a group 5 at all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then I have to rewrite it one group by one group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;select count(pt) into: n1 from t where group = 1;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;select count(pt) into: n5 from t where group = 5;&lt;/P&gt;&lt;P&gt;select count(pt) into: n6 from t where group = 6;&lt;/P&gt;&lt;P&gt;quit; &lt;/P&gt;&lt;P&gt;It works! But now there are only 6 group, how about if there are many groups? I already thought about this problem for a long time... &lt;/P&gt;&lt;P&gt;so if someone can tell me how to solve such problems just by using proc sql?&lt;/P&gt;&lt;P&gt;thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 13:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130995#M35636</guid>
      <dc:creator>maomaochong96888_hotmail_com</dc:creator>
      <dc:date>2013-09-06T13:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130996#M35637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow as bellow &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data t;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;input group pt $;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;datalines;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;1 a&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;1 b&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;2 u&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;2 r&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;3 t&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;4 q&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;6 c&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;select count(distinct(pt)) into :count separated by ',' from t;&lt;/P&gt;&lt;P&gt;select count(pt) into: n1 - :n&amp;amp;count. from t group by group;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should have to count the values first and assign that to one variable. and use that count variable where ever you want. in the above program, if you add any record, it should take the count and will create the macro variables as many you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this is enough to do as your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yaswanth &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 14:17:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130996#M35637</guid>
      <dc:creator>yaswanthj</dc:creator>
      <dc:date>2013-09-06T14:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130997#M35638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you could try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;insert into t values (5,&amp;nbsp; NULL ) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; values (7, NULL);&lt;/P&gt;&lt;P&gt;select count(pt) into: n1 - :n7 from t group by grp;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note I changed the name of your "group" variable to "grp".&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anca.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put &amp;amp;n1 &amp;amp;n2 &amp;amp;n3 &amp;amp;n4 &amp;amp;n5 &amp;amp;n6 &amp;amp;n7.;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 14:21:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130997#M35638</guid>
      <dc:creator>AncaTilea</dc:creator>
      <dc:date>2013-09-06T14:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130998#M35639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you both of you&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;but they do not work!&lt;/P&gt;&lt;P&gt;Anca: I am not allowed to insert anything into the dataset manually.... &lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="9279" data-username="yaswanthj" href="https://communities.sas.com/people/yaswanthj" id="jive-927978966724109721803"&gt;yaswanthj&lt;/A&gt;: the problem is SAS doesn't know there is group 5 because there is no such records in group 5&amp;nbsp; so far...&lt;STRONG&gt; &lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 15:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130998#M35639</guid>
      <dc:creator>maomaochong96888_hotmail_com</dc:creator>
      <dc:date>2013-09-06T15:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130999#M35640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As per my knowledge, we can create the macro variables with existing one`s or can create inserting some thing. im not sure, we can assign the values to the macro variables using non existing values..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 15:06:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/130999#M35640</guid>
      <dc:creator>yaswanthj</dc:creator>
      <dc:date>2013-09-06T15:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131000#M35641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hope the below code meets your criteria&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data t;&lt;/P&gt;&lt;P&gt;input group pt $;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1 a&lt;/P&gt;&lt;P&gt;1 b&lt;/P&gt;&lt;P&gt;2 u&lt;/P&gt;&lt;P&gt;2 r&lt;/P&gt;&lt;P&gt;3 t&lt;/P&gt;&lt;P&gt;4 q&lt;/P&gt;&lt;P&gt;6 c&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*create a dummy dataset with groups and give the values as 0*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data dummy;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do group=1 to 6;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; count=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;/*&amp;nbsp;&amp;nbsp;&amp;nbsp; get the distinct count of the pt in each group*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table test as select count(distinct pt) as count ,group from t group by group;&lt;/P&gt;&lt;P&gt;/*merge the counts of the pt in each group with the dummy dataset which has all the groups*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table test2 as select coalesce(a.count,b.count) as count,b.group from test as a right join dummy as b on a.group=b.group;&lt;/P&gt;&lt;P&gt;/*generate the macro for each group by the below code*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select count into: n1-:n&amp;amp;sysmaxlong from test2;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put _user_;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 15:35:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131000#M35641</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2013-09-06T15:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131001#M35642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES &lt;SPAN class="j-post-author "&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="1510" data-externalid="" data-presence="null" data-userid="9792" data-username="Jagadishkatam" href="https://communities.sas.com/people/Jagadishkatam" id="jive-979278975756591775803"&gt;Jagadishkatam&lt;/A&gt;&amp;nbsp; It works!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;So I have to create a dummy dataset to solve this problem!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;Thanks all of you!!! &lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 17:28:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131001#M35642</guid>
      <dc:creator>maomaochong96888_hotmail_com</dc:creator>
      <dc:date>2013-09-06T17:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131002#M35643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data t;&lt;BR /&gt;input group pt $;&lt;BR /&gt;datalines;&lt;BR /&gt;1 a&lt;BR /&gt;1 b&lt;BR /&gt;2 u&lt;BR /&gt;2 r&lt;BR /&gt;3 t&lt;BR /&gt;4 q&lt;BR /&gt;6 c&lt;BR /&gt;;&lt;BR /&gt;proc summary data=t n;&lt;BR /&gt;by group;&lt;BR /&gt;output out=temp;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt; set temp;&lt;BR /&gt; call symputx (cats('n',group),_freq_);&lt;BR /&gt; run;&lt;BR /&gt; %put &amp;amp;n1 &amp;amp;n2 &amp;amp;n3 &amp;amp;n4 &amp;amp;n5 &amp;amp;n6;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 17:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131002#M35643</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-09-06T17:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131003#M35644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read this paper.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.lexjansen.com/pharmasug/2005/coderscorner/cc22.pdf" title="http://www.lexjansen.com/pharmasug/2005/coderscorner/cc22.pdf"&gt;http://www.lexjansen.com/pharmasug/2005/coderscorner/cc22.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 19:42:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131003#M35644</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-09-06T19:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql count problem</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131004#M35645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS LINLIN ~&lt;/P&gt;&lt;P&gt;THANKS TOM!!!&amp;nbsp; This paper is just written for my question!:smileylaugh:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can always get what I want in the forum!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks you! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 19:58:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-count-problem/m-p/131004#M35645</guid>
      <dc:creator>maomaochong96888_hotmail_com</dc:creator>
      <dc:date>2013-09-06T19:58:36Z</dc:date>
    </item>
  </channel>
</rss>

