<?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: Sum numbered range lists in pro sql in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81648#M17615</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is an aggregate SUM() function in ANSI SQL that SAS supports, but PROC SQL also supports SAS functions, including the SUM(,) function. The compiler will treat all references to SUM() that only include one parameter as the aggregate function and any that include two more parameters as the SAS function.&amp;nbsp; Note that the SUM(,) function will get a different result from just using the addition operator when there are missing values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To prevent the compiler from being confused when there is only one variable specified add an extra argument.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;sum(.,&amp;amp;names) as count&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;or&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;sum(0,&amp;amp;names) as count&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Mar 2013 21:30:08 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2013-03-19T21:30:08Z</dc:date>
    <item>
      <title>Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81641#M17608</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;I have a numbered range list of varibles: count1 to count20 in my infile data file.&amp;nbsp; I would like to sum these varibles as count in proc sql&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table outfile1 as&lt;/P&gt;&lt;P&gt;&amp;nbsp; select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(of Count1 - Count20) as count&lt;/P&gt;&lt;P&gt;&amp;nbsp; from infile;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but sas does not like this sum(of). So what is wrong with is code? Anyway to do this in sql?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 16:19:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81641#M17608</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-03-19T16:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81642#M17609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't use variable shortcuts in proc SQL. That will work fine in a data step, so either switch to a data step or list the variables in proc sql. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, in SQL and a data step it is a row operation, not column operation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 16:35:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81642#M17609</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-03-19T16:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81643#M17610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Reeza. If I really want to do this in sql, then listing the variable is impractical. How to do this in sql by macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 19:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81643#M17610</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-03-19T19:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81644#M17611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For a purely SAS/SQL solution, try :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sql noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select name into:names separated by "," from dictionary.columns &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; where libname="WORK" and upcase(memname)="INFILE";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create table outfile1 as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select id, sum(&amp;amp;names) as count&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from infile&lt;/STRONG&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reset print;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select * from outfile1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 20:10:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81644#M17611</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-03-19T20:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81645#M17612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think one change might be in order (separate by "+" instead of ",")?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;select name into:names separated by "+" from dictionary.columns&lt;/P&gt;&lt;P&gt;where libname="WORK" and upcase(memname)="INFILE";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create table outfile1 as&lt;/P&gt;&lt;P&gt;select id, sum(&amp;amp;names) as count&lt;/P&gt;&lt;P&gt;from infile&lt;/P&gt;&lt;P&gt;group by id;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reset print;&lt;/P&gt;&lt;P&gt;select * from outfile1;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 20:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81645#M17612</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2013-03-19T20:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81646#M17613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks DBailey for noting the problem. It's the GROUP BY clause that was superfluous. SUM here is not a summary function. I edited my message to reflect this. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 21:12:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81646#M17613</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-03-19T21:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81647#M17614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, I think SUM in proc sql is an aggregation function.&amp;nbsp; If you just want to add the columns then how about&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table outfile1 as select id, &amp;amp;names as ColumnSum from infile;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 21:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81647#M17614</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2013-03-19T21:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81648#M17615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is an aggregate SUM() function in ANSI SQL that SAS supports, but PROC SQL also supports SAS functions, including the SUM(,) function. The compiler will treat all references to SUM() that only include one parameter as the aggregate function and any that include two more parameters as the SAS function.&amp;nbsp; Note that the SUM(,) function will get a different result from just using the addition operator when there are missing values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To prevent the compiler from being confused when there is only one variable specified add an extra argument.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;sum(.,&amp;amp;names) as count&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;or&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;sum(0,&amp;amp;names) as count&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 21:30:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81648#M17615</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-03-19T21:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81649#M17616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have more than one parameter to the sum function it operates across the row, If you have a single parameter then its an aggregate function. Same for average, min, max in SQL and probably some others.&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; select *, sum(age, height, weight) as row_sum from sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select *, sum(age) as sum_age, sum(height) as sum_height from sashelp.class;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 21:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81649#M17616</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-03-19T21:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81650#M17617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can tell those of us who grew up in a sql world...and then started using sas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2013 11:30:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81650#M17617</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2013-03-21T11:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81651#M17618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone for so many responses. Very good discussion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2013 17:33:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81651#M17618</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-03-21T17:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81652#M17619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why separate by "+" not ","? Will &amp;amp;names contain ID variable or not? What if not only I have count1 to count20, I also have amount1 to amount20, and I want to sum all counti as count, and sum all amounti as amount? Will this selcet name statement still work or not? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2013 18:49:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81652#M17619</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-03-21T18:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81653#M17620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, I should have been more careful &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;. ID didn't belong in the &amp;amp;names list. This is how it should be for summing counts and amounts separately :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;proc sql noprint;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;select name into:counts separated by "," from dictionary.columns &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname="WORK" and upcase(memname)="INFILE" and upcase(name) like "COUNT%";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;select name into:amounts separated by "," from dictionary.columns &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname="WORK" and upcase(memname)="INFILE" and upcase(name) like "AMOUNT%";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;create table outfile1 as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;select id, sum(&amp;amp;counts) as count, sum(&amp;amp;amounts) as amount&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;from infile;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;reset print;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;select * from outfile1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that the equivalent SAS datastep, using variable lists, is much simpler :&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;data outfile1(keep=id count amount);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt;"&gt;set infile;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt;"&gt;count = sum(of count:);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt;"&gt;amount = sum(of amount:);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;proc print; run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2013 20:09:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81653#M17620</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-03-21T20:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sum numbered range lists in pro sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81654#M17621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks PG. Good work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Mar 2013 14:31:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-numbered-range-lists-in-pro-sql/m-p/81654#M17621</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-03-22T14:31:44Z</dc:date>
    </item>
  </channel>
</rss>

