<?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>Thamaraikannan Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>Thamaraikannan Tracker</description>
    <pubDate>Thu, 21 May 2026 06:36:21 GMT</pubDate>
    <dc:date>2026-05-21T06:36:21Z</dc:date>
    <item>
      <title>Re: Subsetting Dataset using Proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Subsetting-Dataset-using-Proc-sql/m-p/388095#M93089</link>
      <description>&lt;P&gt;&lt;SPAN&gt;It is not possible to produce multiple tables or views in a single sql&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;query.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best way could be :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc sql;&lt;BR /&gt;create table lt_15k as select * from sas1.cars where price le 15 ;&lt;BR /&gt;create table lt_20k as select * from sas1.cars where price between 15 and 20 ; &lt;BR /&gt;create table lt_30k as select * from sas1.cars where price between 20 and 30 ; &lt;BR /&gt;create table lt_40k as select * from sas1.cars where price between 30 and 40 ; &lt;BR /&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 10:44:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Subsetting-Dataset-using-Proc-sql/m-p/388095#M93089</guid>
      <dc:creator>Thamaraikannan</dc:creator>
      <dc:date>2017-08-15T10:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to use sas code to make a table like this... (urgent！）</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-sas-code-to-make-a-table-like-this-urgent/m-p/142362#M28544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data src_rec;&lt;/P&gt;&lt;P&gt;input name $ sex $ school $ dt date9. score;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;AAA F Law 9-sep-14 10&lt;/P&gt;&lt;P&gt;BBB F IT 10-Aug-14 20&lt;/P&gt;&lt;P&gt;CCC M Law 19-Sep-14 30&lt;/P&gt;&lt;P&gt;DDD F Art 10-Dec-14 25&lt;/P&gt;&lt;P&gt;EEE F Law 9-sep-14 40&lt;/P&gt;&lt;P&gt;FFF M Biz 10-Aug-14 45&lt;/P&gt;&lt;P&gt;GGG F Law 9-Dec-14 55&lt;/P&gt;&lt;P&gt;HHH M IT&amp;nbsp; 6-Dec-14 50&lt;/P&gt;&lt;P&gt;III M Law 19-Nov-14 45&lt;/P&gt;&lt;P&gt;JJJ M Art 10-Aug-14 20&lt;/P&gt;&lt;P&gt;kkk F Law 9-Dec-14 25&lt;/P&gt;&lt;P&gt;lll F Biz 8-Dec-14 20&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data date_flg ;&lt;/P&gt;&lt;P&gt;set src_rec; &lt;/P&gt;&lt;P&gt;if intck('day',(INTNX('week',dt,0,'B' )),today())&amp;gt;= 7 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; flag = 'This week' ;&lt;/P&gt;&lt;P&gt;else do;&lt;/P&gt;&lt;P&gt;flag = 'last week' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc tabulate data = date_flg;&lt;/P&gt;&lt;P&gt; class school sex flag;&lt;/P&gt;&lt;P&gt; var score;&lt;/P&gt;&lt;P&gt; table (school*sex ),flag='No of student Registered'*n=''(flag='Sum of score'*score=''*sum='')(flag='Avg of score'*score=''*mean='') ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="output.PNG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/8328_output.PNG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 09:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-sas-code-to-make-a-table-like-this-urgent/m-p/142362#M28544</guid>
      <dc:creator>Thamaraikannan</dc:creator>
      <dc:date>2014-12-10T09:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to use sas code to make a table like this... (urgent！）</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-sas-code-to-make-a-table-like-this-urgent/m-p/142359#M28541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data src_rec;&lt;/P&gt;&lt;P&gt;input name $ sex $ school $ dt date9.;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;AAA F Law 9-sep-14&lt;/P&gt;&lt;P&gt;BBB F IT 10-Aug-14&lt;/P&gt;&lt;P&gt;CCC M Law 19-Sep-14&lt;/P&gt;&lt;P&gt;DDD F Art 10-Dec-14&lt;/P&gt;&lt;P&gt;EEE F Law 9-sep-14&lt;/P&gt;&lt;P&gt;FFF M Biz 10-Aug-14&lt;/P&gt;&lt;P&gt;GGG F Law 9-Dec-14&lt;/P&gt;&lt;P&gt;HHH M IT&amp;nbsp; 6-Dec-14&lt;/P&gt;&lt;P&gt;III M Law 19-Nov-14&lt;/P&gt;&lt;P&gt;JJJ M Art 10-Aug-14&lt;/P&gt;&lt;P&gt;kkk F Law 9-Dec-14&lt;/P&gt;&lt;P&gt;lll F Biz 8-Dec-14&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data date_flg ;&lt;/P&gt;&lt;P&gt;set src_rec;&amp;nbsp; &lt;/P&gt;&lt;P&gt; if intck('day',(INTNX('week',dt,0,'B' )),today())&amp;gt;= 7 then flag = 'This week' ;&lt;/P&gt;&lt;P&gt;else flag = 'last week' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data = date_flg;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class school sex flag;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; table school*sex,flag='No of student Registered'*n='';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="output.PNG" class="jive-image" src="https://communities.sas.com/legacyfs/online/8297_output.PNG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2014 13:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-sas-code-to-make-a-table-like-this-urgent/m-p/142359#M28541</guid>
      <dc:creator>Thamaraikannan</dc:creator>
      <dc:date>2014-12-09T13:05:34Z</dc:date>
    </item>
  </channel>
</rss>

