<?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: SAS data step and macros in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134997#M27454</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amazing!! That worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is, it is good for two companies or maybe 3,4.&lt;/P&gt;&lt;P&gt;What if I need to combine n number of companies?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Nov 2013 23:30:35 GMT</pubDate>
    <dc:creator>shyamili</dc:creator>
    <dc:date>2013-11-07T23:30:35Z</dc:date>
    <item>
      <title>SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134987#M27444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. I am new to SAS and have a doubt, which might sound basic to many ppl here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a data set ABC which is like, lets say&lt;/P&gt;&lt;P&gt;a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;____________&lt;/P&gt;&lt;P&gt;compa1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb1&lt;/P&gt;&lt;P&gt;compa1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb2&lt;/P&gt;&lt;P&gt;compa1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb3&lt;/P&gt;&lt;P&gt;compa2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb1&lt;/P&gt;&lt;P&gt;compa2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each row, I need to execute an sql statement or a data step which lists out the records of another tables based on the company names.&lt;/P&gt;&lt;P&gt;Ex: select * from table1 where company_name in ('compa1','compa2');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This needs to be repeated for all the values of the initial data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 19:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134987#M27444</guid>
      <dc:creator>shyamili</dc:creator>
      <dc:date>2013-11-07T19:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134988#M27445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why would you want to do it one row at a time?&amp;nbsp; Seems inefficient to me.&lt;/P&gt;&lt;P&gt;Why not just pull out all of the observations in one query?&lt;/P&gt;&lt;P&gt;If you need to keep them separate keep the values from the first dataset (or even better give each criteria its own unique id).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; length a b $10 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input a b ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; row+1;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;compa1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb1&lt;/P&gt;&lt;P&gt;compa1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb2&lt;/P&gt;&lt;P&gt;compa1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb3&lt;/P&gt;&lt;P&gt;compa2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb1&lt;/P&gt;&lt;P&gt;compa2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compb2&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 sql noprint ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; select a.*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , b.*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; from have a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , table1 b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; where b.company_name = a.a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or b.company_name = a.b&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 20:16:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134988#M27445</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-07T20:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134989#M27446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the prompt reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried doing that but couldn't give me the required answer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me put my query in more detail.&lt;/P&gt;&lt;P&gt;My initial data set has variables something like compName, date, value.&lt;/P&gt;&lt;P&gt;The next dataset is ABC as mentioned above.&lt;/P&gt;&lt;P&gt;I need to group those companies by date, where company name is each row in dataset ABC, and find the average of values per each date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 20:58:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134989#M27446</guid>
      <dc:creator>shyamili</dc:creator>
      <dc:date>2013-11-07T20:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134990#M27447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like&lt;/P&gt;&lt;P&gt;select avg(values) from&lt;/P&gt;&lt;P&gt;(select values from companies where compId in (123,124)) group by date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of those values, I need to put in the values of&amp;nbsp; each row of dataset ABC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 21:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134990#M27447</guid>
      <dc:creator>shyamili</dc:creator>
      <dc:date>2013-11-07T21:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134991#M27448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is still very confusing as to what your actual requirement is.&lt;/P&gt;&lt;P&gt;So if you have TABLE1 with variables COMPANY, DATE, VALUE and table LIST with variables COMPANY1, COMPANY2 then it sounds like you want to so something like&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;select a.company, a.date, mean(value) as mean_value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;from TABLE1 A&lt;/P&gt;&lt;P&gt;where a.company in &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (select company1 as company from list&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; union&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select company2 as company from list)&lt;/P&gt;&lt;P&gt;group by a.company, a.date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 22:02:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134991#M27448</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-07T22:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134992#M27449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry! I understand that the problem statement is very confusing.&lt;/P&gt;&lt;P&gt;That dint work too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. First I have the list of companies with various dates and stock values for that date.&lt;/P&gt;&lt;P&gt;2. I find the various combinations possible. Lets say n=2, I find all the possible combinations of two companies together.&lt;/P&gt;&lt;P&gt;3. Then for each of these possible combination (Ex: compA+compB), I find the average stock value based on the date. Thats the reason I used group by date.&lt;/P&gt;&lt;P&gt;4. Finally, after finding the averages for all dates of those two companies., I need to find the std dev of the averages.&lt;/P&gt;&lt;P&gt;5. This process needs to be repeated for all the possible combinations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I have all the possible combinations of companies in a table&lt;/P&gt;&lt;P&gt;I need to find the average stock value for every combination based on the date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's what I am looking at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks yet again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 22:22:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134992#M27449</guid>
      <dc:creator>shyamili</dc:creator>
      <dc:date>2013-11-07T22:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134993#M27450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not get how the two companies get involved in the analysis.&lt;/P&gt;&lt;P&gt;To find the average stock price for each company on each date you could use PROC SUMMARY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc summary data=have nway ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class company date ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var value ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output out=want mean=mean_value std=std_value ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 23:11:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134993#M27450</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-07T23:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134994#M27451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want some how add the prices of the two companies together?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql ;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select a.company1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , a.company2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , b.date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , sum(b.value,c.value) as total&lt;/P&gt;&lt;P&gt;from list a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , table1 b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , table1 c&lt;/P&gt;&lt;P&gt;where a.company1 = b.company&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and a.company2 = c.company&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and b.date = c.date&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 23:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134994#M27451</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-07T23:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134995#M27452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks yet again!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this give me the sum of values of all company combinations mentioned in list?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That sounds great!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 23:20:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134995#M27452</guid>
      <dc:creator>shyamili</dc:creator>
      <dc:date>2013-11-07T23:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134996#M27453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The idea here is that you are joining the list back to the master table twice so that you can find the value for each of the two companies.&lt;/P&gt;&lt;P&gt;I am not sure how you want to do your averaging. &lt;/P&gt;&lt;P&gt;1) Do you need to average the values before using them?&amp;nbsp; If you have just one value per company per day then there is no need to pre average the numbers.&amp;nbsp; &lt;/P&gt;&lt;P&gt;2) Do you want to average over all of the dates for the pair of companies?&amp;nbsp; &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;proc sql ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;create table want as&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;select x.company1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , x.company2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , mean(total) as average_total&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;from &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;(select a.company1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , a.company2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , b.date&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , sum(b.value,c.value) as total&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;from list a&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , table1 b&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , table1 c&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;where a.company1 = b.company&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and a.company2 = c.company&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and b.date = c.date&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;group by 1,2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 23:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134996#M27453</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-07T23:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS data step and macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134997#M27454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amazing!! That worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is, it is good for two companies or maybe 3,4.&lt;/P&gt;&lt;P&gt;What if I need to combine n number of companies?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2013 23:30:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-data-step-and-macros/m-p/134997#M27454</guid>
      <dc:creator>shyamili</dc:creator>
      <dc:date>2013-11-07T23:30:35Z</dc:date>
    </item>
  </channel>
</rss>

