<?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: How to run a macro 60 times and put data into in one table? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201962#M37684</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not knowing what is behind the requirement is sounds like you are on the right track (depending on what your macro does).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Apr 2015 21:04:50 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2015-04-22T21:04:50Z</dc:date>
    <item>
      <title>How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201961#M37683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rescue me! I have a urgent request but don't know what to do with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running a macro 60 times, then put data into one table. I was thinking to use do loop to let it run 60 times and proc append them into 1 file. After searching for 1 hour, I am here. Can anyone kindly help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi, all I end up add a macro as below for running macro analysis 30 times to boostrap. Thank you all&lt;/P&gt;&lt;P&gt;%Macro doit;&lt;/P&gt;&lt;P&gt;%do i =1 %to 30;&lt;/P&gt;&lt;P&gt;%if i &amp;gt; 30 %then %do;&lt;/P&gt;&lt;P&gt;%analysis('01jan14'd,'31jan14'd, '01-01-2014','01-31-2014')&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 20:56:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201961#M37683</guid>
      <dc:creator>XiaoyanZhao</dc:creator>
      <dc:date>2015-04-22T20:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201962#M37684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not knowing what is behind the requirement is sounds like you are on the right track (depending on what your macro does).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:04:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201962#M37684</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-04-22T21:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201963#M37685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you're on the right track, but you might want to include the proc append within the macro. That way you don't have to keep track of file names and might be able to reuse the same filename for all of the individual files your macro creates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201963#M37685</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-04-22T21:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201964#M37686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P dir="ltr" id="yiv9038582945yui_3_16_0_1_1429620241647_201148" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;&lt;SPAN id="yiv9038582945yui_3_16_0_1_1429620241647_201147"&gt;My macro would generate a table with 2 columns, one is from Jan, 2014 to Dec 2014 (once per month) as Time, one is the number that I wanted. But the result is ramdom. So I want to run it 60 times and ave the number that I wanted. Don't know how to write the execute macro 60 times in do loop code. Help me please........ &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;&lt;/SPAN&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv9038582945yui_3_16_0_1_1429620241647_201148" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;&lt;/P&gt;&lt;P dir="ltr" id="yiv9038582945yui_3_16_0_1_1429620241647_201148" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;Thanks&lt;/P&gt;&lt;P dir="ltr" id="yiv9038582945yui_3_16_0_1_1429620241647_201148" style="color: #000000; font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Hi, all &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;I end up add the macro in the code to execute macro analysis 30 time to bootstrap data for random selected results.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%Macro doit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%do i =1 %to 30;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%if i &amp;gt; 30 %then %do;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%analysis('01jan14'd,'31jan14'd, '01-01-2014','01-31-2014')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%mend;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;%DOIT&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 21:24:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201964#M37686</guid>
      <dc:creator>XiaoyanZhao</dc:creator>
      <dc:date>2015-04-22T21:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201965#M37687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post a sample macro call, preferably a few. Or even your macro code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can generally use call execute within a a data step loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 22:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201965#M37687</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-04-22T22:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201966#M37688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suggest starting with available SAS.COM support / communities resources - Internet search might include argument:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;macro do loop generate code site:sas.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As has been suggested, post what doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, consider SAS OPTIONS such as NODSNFERR NOVNFERR NOBYERR, if you intend to code one set / logic-path, otherwise look at using macro language logic involving %SYSFUNC(EXIST(&amp;lt;member_name&amp;gt;))&amp;nbsp; to control initial code-path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 22:52:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201966#M37688</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2015-04-22T22:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201967#M37689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, all Thanks for your helps. I end up adding a do loop as&amp;nbsp; below to run the macro 30 times to bootstrap random data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Macro doit;&lt;/P&gt;&lt;P&gt;%do i =1 %to 30;&lt;/P&gt;&lt;P&gt;%if i &amp;gt; 30 %then %do;&lt;/P&gt;&lt;P&gt;%analysis('01jan14'd,'31jan14'd, '01-01-2014','01-31-2014')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 20:58:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201967#M37689</guid>
      <dc:creator>XiaoyanZhao</dc:creator>
      <dc:date>2015-04-23T20:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201968#M37690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Hi, all &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 style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I end up add the macro in the code to execute macro analysis 30 time to bootstrap data for random selected results.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%Macro doit;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%do i =1 %to 30;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%if i &amp;gt; 30 %then %do;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%analysis('01jan14'd,'31jan14'd, '01-01-2014','01-31-2014')&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%end;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%end;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%mend;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%DOIT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 21:02:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201968#M37690</guid>
      <dc:creator>XiaoyanZhao</dc:creator>
      <dc:date>2015-04-23T21:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201969#M37691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Hi, all &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I end up add the macro in the code to execute macro analysis 30 time to bootstrap data for random selected results.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%Macro doit;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%do i =1 %to 30;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%if i &amp;gt; 30 %then %do;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%analysis('01jan14'd,'31jan14'd, '01-01-2014','01-31-2014')&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%end;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%end;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%mend;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;%DOIT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 21:06:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201969#M37691</guid>
      <dc:creator>XiaoyanZhao</dc:creator>
      <dc:date>2015-04-23T21:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201970#M37692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't use i in the %analysis call, so it executes the same thing over and over...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 23:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201970#M37692</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-04-23T23:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201971#M37693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plus the only reason it does anything is because the letter i has a greater value than the characters '30'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are trying to base a decision of whether of not to do something based on the value of &amp;amp;i, you have to specify &amp;amp;i in your %do statement.&amp;nbsp; i.e., %if &amp;amp;i. gt 30 %then %do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, in this case, you wouldn't do anything since &amp;amp;i will only be greater than 30 as it leaves the loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 00:08:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201971#M37693</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-04-24T00:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to run a macro 60 times and put data into in one table?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201972#M37694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%macro MyMacro(n=1,base=work.output);&lt;/P&gt;&lt;P&gt;%put info: &amp;amp;=n;&lt;/P&gt;&lt;P&gt;*process;&lt;/P&gt;&lt;P&gt;%put remove this line with no ending semicolon&lt;/P&gt;&lt;P&gt;proc append data = &amp;amp;syslast&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; base = &amp;amp;base;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;%macro do_this(upperbound=60;&lt;/P&gt;&lt;P&gt;%do i = 1 %to &amp;amp;upperbound;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put My_macro(n = &amp;amp;i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%do_this(upperbound = 3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for loops with dates see this page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/Macro_Loops_with_Dates" title="http://www.sascommunity.org/wiki/Macro_Loops_with_Dates"&gt;http://www.sascommunity.org/wiki/Macro_Loops_with_Dates&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron Fehd&amp;nbsp; macro loop maven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 20:59:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-a-macro-60-times-and-put-data-into-in-one-table/m-p/201972#M37694</guid>
      <dc:creator>Ron_MacroMaven</dc:creator>
      <dc:date>2015-04-27T20:59:04Z</dc:date>
    </item>
  </channel>
</rss>

