<?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: Multiple selection using proc sql in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117238#M24182</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jaap and Pratrick for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even though it is an access data, it is not as small and it contains around 4000 x 25 cells.&lt;/P&gt;&lt;P&gt;Therefore I find sas ideal and I need it to be updated only once a month. that means it suites with sas. I am interested in working with sas learning soemthing new..&lt;/P&gt;&lt;P&gt;I do not need a capsule code that I can use, but my question is, how can I have a loop in proc sql probably nested loop to get it done?&lt;/P&gt;&lt;P&gt;I found two possibilities 1. macro, 2 proc tabulate. I can also provide a sample table of input data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Aug 2013 11:06:52 GMT</pubDate>
    <dc:creator>Eleenrose</dc:creator>
    <dc:date>2013-08-21T11:06:52Z</dc:date>
    <item>
      <title>Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117235#M24179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning Everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am totally new to sas programming, and I am trying to realise a huge data analysis with sas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have a database in access which is exported to sas and would like to do some data analsis.&lt;/P&gt;&lt;P&gt;the simple logic I am trying to realise is as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; need to calculate the total number of fax, call or email is made in the whole database.&lt;/P&gt;&lt;P&gt;2. calculate the same for last 6 months.&lt;/P&gt;&lt;P&gt;3. for each user&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt; calculate the no: of fax, email, phone in each of the last 6 months.&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so once the table is exported and in access environment it looks something like attached image&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I currently realised the total values (overall value, total for month1 to month6, total email, fax, phone&amp;nbsp; for month 1-6, total successful email/Fax/phone for month 1-6, total unsuccessfull email/fax/phone for month 1-6.&amp;nbsp;&amp;nbsp; which is around 110 fields. )&lt;/P&gt;&lt;P&gt;which i do not feel as the best solution to write each and every code(which is repeatative) in proc sql.&lt;/P&gt;&lt;P&gt;1. I am trying to find some optimal way how I can solve it.&lt;/P&gt;&lt;P&gt;2. I want to know how to put the whole name in a loop and calculate for each name the no: of ..fax/phone/email/success/unsucces etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I may write the logic this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each(name)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;count no: of email month 1,&lt;/P&gt;&lt;P&gt;count no: email month2...month6&lt;/P&gt;&lt;P&gt;count no: of Fax month 1...month 6&lt;/P&gt;&lt;P&gt;count no: phone month1-month 2&lt;/P&gt;&lt;P&gt;save in the data analysis table&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is how I perform it currently&lt;/P&gt;&lt;P&gt;-----------------------------&lt;/P&gt;&lt;P&gt;Proc sql;&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;count (name)&lt;/P&gt;&lt;P&gt;into :count_fax_mon1&lt;/P&gt;&lt;P&gt;from total_6months&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;name&amp;lt;&amp;gt;""&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;communication = "Fax"&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;comm_date = "&amp;amp;mon1";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update communication_statistic&lt;/P&gt;&lt;P&gt;set Fax_mon1 = "&amp;amp;count_fax_mon1";&lt;/P&gt;&lt;P&gt;quit;&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;&lt;/P&gt;&lt;P&gt;any help is appreciated..&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Eleenrose&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10883iF7E480A606D39891/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="MIS calc.PNG" title="MIS calc.PNG" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 08:49:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117235#M24179</guid>
      <dc:creator>Eleenrose</dc:creator>
      <dc:date>2013-08-21T08:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117236#M24180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This small dataset (as it is coming from MS-Access) you want to do some reporting on.&lt;/P&gt;&lt;P&gt;You did not mention you environment/tools of SAS you are using. Also nothing on a support staff, &lt;/P&gt;&lt;P&gt;- Eguide is nice in click/for some results&lt;/P&gt;&lt;P&gt;- A BI/Di team could do the coding work for you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reporting in SAS is done for example with &lt;A href="http://support.sas.com/documentation/cdl/en/proc/64787/HTML/default/viewer.htm#n1dz7jdasx5t56n1rmlx346dyk6n.htm" title="http://support.sas.com/documentation/cdl/en/proc/64787/HTML/default/viewer.htm#n1dz7jdasx5t56n1rmlx346dyk6n.htm"&gt;Base SAS(R) 9.4 Procedures Guide&lt;/A&gt; (Proc report)&lt;/P&gt;&lt;P&gt;No need to prepare counts as a dataset tabel in advance before presenting it. It is done all within that procedure. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 09:54:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117236#M24180</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-21T09:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117237#M24181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to provide us some data (eg. a subset of your sas table) in order to give you some code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you're new to SAS coding and I assume this is a one-off task I suggest you use SAS EG and the wizards there. That should make it quite a bit easier for you. You will need to skill-up a bit both with using SAS EG and SAS coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 10:00:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117237#M24181</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-08-21T10:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117238#M24182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jaap and Pratrick for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even though it is an access data, it is not as small and it contains around 4000 x 25 cells.&lt;/P&gt;&lt;P&gt;Therefore I find sas ideal and I need it to be updated only once a month. that means it suites with sas. I am interested in working with sas learning soemthing new..&lt;/P&gt;&lt;P&gt;I do not need a capsule code that I can use, but my question is, how can I have a loop in proc sql probably nested loop to get it done?&lt;/P&gt;&lt;P&gt;I found two possibilities 1. macro, 2 proc tabulate. I can also provide a sample table of input data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 11:06:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117238#M24182</guid>
      <dc:creator>Eleenrose</dc:creator>
      <dc:date>2013-08-21T11:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117239#M24183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx for the sizing....&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;4000 * 25 cells will be in the 10's of Mb's on disk (*.mdb&amp;nbsp; - *.sas7bcat). Very tempting to use SASFILE option to get all data to internal memory of you computer. By that optimal performance while generating reports.&lt;BR /&gt;Being used to see dataset of 10's of Gb's and 4M instead of 4k records we should not bother about performance in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The mentioned "proc report" is something similar as "proc tabulate" but report is tending to be used more last years.&lt;/P&gt;&lt;P&gt;Does not care. You should have access to Eguide. Using this is the most simple approach.&amp;nbsp; The first hurdle is you can still code but there are lot of menu-s helping you the code being generated. There are options to define tables to build cells counts in the lay out you showed. Viewing the code is possible ... proc tabulate or report... being used.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 11:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117239#M24183</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-21T11:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117240#M24184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaap, Thanks for the suggestin. let me go through Eguide. &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;&lt;/P&gt;&lt;P&gt;I had a quick look about sas Enterprise guide and came to know it is an application that needed to be installed in the system. But unfortunately I do not have access to it at my work place. so I really need to find a solution with proc sql, data sets or proc tabulate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 11:56:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117240#M24184</guid>
      <dc:creator>Eleenrose</dc:creator>
      <dc:date>2013-08-21T11:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117241#M24185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the date is a SAS date type I think you can get much of this with the various reporting procedures directly and not a lot of data manipulation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this for all records;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data= yourdata;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class name;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class communication;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; table communication, n; /* count of all communication types in data base*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; table name*communication, n; /* count of each communication type by name in database*/&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;/* for within "last six months add where clause, good idea to have date in SAS date format*/&lt;/P&gt;&lt;P&gt;proc tabulate data= yourdata;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where comm_date &amp;gt;= '01MAR2013'd ; /* just an example date*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class name;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class communication;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class comm_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format comm_date yymmd7.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; table communication, (comm_date all)*n ; /* count of communication by month and total since date given*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; table name*communication, (comm_date all)*n; /* count by name and communication by month and total*/&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My German isn't very good, but it looks like your example had some other status variable that might have been a success/failure. If that was coded in a 1/0 manner then it could be incorporated to give those percents shown in your example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 14:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117241#M24185</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-08-21T14:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117242#M24186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at Proc Freq. That will provide all the reports you're asking for easily enough, if you're not finicky for formatting. And your data is not considered "big" or even large &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;. Access could also handle those reports in some basic queries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a good basic intro:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.ats.ucla.edu/stat/sas/modules/descript.htm" title="http://www.ats.ucla.edu/stat/sas/modules/descript.htm"&gt;http://www.ats.ucla.edu/stat/sas/modules/descript.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The proc tabulate example above will work, but is more complex code for a beginner. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc freq data=yourdata;&lt;/P&gt;&lt;P&gt;table communication;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need more help, I suggest posting what your tables look like at the least and sample data at best. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 15:13:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117242#M24186</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-08-21T15:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117243#M24187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And loops in SAS are generally* used to go across columns not down rows, SAS processes one row at a time compared to SQL which may bring in the whole dataset into memory at once.&lt;/P&gt;&lt;P&gt;*There are exceptions to this, but for a beginner you wouldn't worry about it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 15:15:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117243#M24187</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-08-21T15:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117244#M24188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Balladw,&lt;/P&gt;&lt;P&gt;Thanks for the steps and this is how I wanted to have and it works with my project.&lt;/P&gt;&lt;P&gt;I can see the output in output window, but if I out it to a table, I cannot understand the result (out=test_tabulate) properly. But I tried to export it to excel table and I get similar to the one I had in output window.&lt;/P&gt;&lt;P&gt;But I need it in access db and unfortunately not in excel.&lt;/P&gt;&lt;P&gt;Anybody have any suggestions?&lt;/P&gt;&lt;P&gt;Thanks again for all sugestions and help..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 16:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117244#M24188</guid>
      <dc:creator>Eleenrose</dc:creator>
      <dc:date>2013-08-21T16:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117245#M24189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use proc freq and the output table from there and then have Access reports format it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 16:37:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117245#M24189</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-08-21T16:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117246#M24190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Following up on Reeza's suggestion, you can either write the table directly to the access database if you have Access to PC Files installed.&amp;nbsp; Or you can write to an excel or csv file and have MS/Access read that file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 17:11:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117246#M24190</guid>
      <dc:creator>LarryWorley</dc:creator>
      <dc:date>2013-08-21T17:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection using proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117247#M24191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I a getting the feeling that something like an Olap or pivotable is being build.&lt;/P&gt;&lt;P&gt;"Poor man OLap"&amp;nbsp; &lt;A href="http://www.nesug.org/proceedings/nesug03/ad/ad008.pdf" title="http://www.nesug.org/proceedings/nesug03/ad/ad008.pdf"&gt;http://www.nesug.org/proceedings/nesug03/ad/ad008.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The core is using proc summary/means (advice use the class ) to build a dataset with all aggregated information &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 17:12:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-selection-using-proc-sql/m-p/117247#M24191</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-21T17:12:47Z</dc:date>
    </item>
  </channel>
</rss>

