<?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: Nesting Macros in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38525#M7751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;even with the 2007 version of Ted's macros I don't get your error. Perhaps that is because I submit Ted's macros before running your code. &lt;/P&gt;&lt;P&gt;How do you invoke these macros (autocall or submit)?&lt;/P&gt;&lt;P&gt;In what release of SAS are you running the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jan 2012 17:32:18 GMT</pubDate>
    <dc:creator>Peter_C</dc:creator>
    <dc:date>2012-01-30T17:32:18Z</dc:date>
    <item>
      <title>Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38514#M7740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all I want to make clear that I'm fairly new to SAS and the concept of MACROS. So please be patient with me;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While searching the web I came accross a really helpful MACRO set: DO_OVER annd ARRAY. I adjusted my code and implemented the MACROS at different spots of my code. At first everything worked like a charm until I added a MACRO loop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a simple example:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MEND;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*1. Set Array*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%ARRAY(REGRESSORS,VALUES=A B);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MACRO SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%DO MACRO = 1 %TO 2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*2. Regression*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc reg data=panel;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;model y = %DO_OVER(REGRESSORS);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%end;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MEND SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since then I always get the following error message for the MACRO inside the loop:&lt;/P&gt;&lt;P&gt;NOTE: Line generated by the macro function "TP".&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1 %&amp;amp;MACRO(&amp;amp;&amp;amp;REGRESSORS&amp;amp;I)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;-&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;76&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;ERROR 22-322: Syntax error, expecting one of the following: a name, ;, /, _ALL_, _CHARACTER_, _CHAR_, _NUMERIC_, {.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;﻿&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Hopefully you could help me with this dilemma..... THANK YOU!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2012 00:48:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38514#M7740</guid>
      <dc:creator>MarkGIP</dc:creator>
      <dc:date>2012-01-26T00:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38515#M7741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try exiting from SAS and starting over with a clean slate?&amp;nbsp; It is possible you had code before with unbalanced quotes or () and SAS is just confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are already writing a macro named then there is not much value to using the DO_OVER and ARRAY macros as you can just write normal SAS macro logic code to loop for you.&lt;/P&gt;&lt;P&gt;But in the little bit of code you posted that does not even seem needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;%MACRO SIMULATION(dataset,REGRESSORS);&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;proc reg data=&amp;amp;dataset;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;model y = &amp;amp;regressors ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;%MEND SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&lt;EM&gt;%SIMULATION(panel,A B);&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2012 01:37:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38515#M7741</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-01-26T01:37:17Z</dc:date>
    </item>
    <item>
      <title>Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38516#M7742</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 your quick reply. I know that the DO_OVER macro is not needed in the sample code I posted. I just wanted to reproduce the error with a simple example...&lt;/P&gt;&lt;P&gt;I've already restarted SAS a couple of times and rerun the code. The error pops up every time I try:(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2012 08:16:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38516#M7742</guid>
      <dc:creator>MarkGIP</dc:creator>
      <dc:date>2012-01-26T08:16:17Z</dc:date>
    </item>
    <item>
      <title>Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38517#M7743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt; the problem does not occur with my 2006 version of these Ted Clay macros.&lt;/P&gt;&lt;P&gt;I think you will need to check that your version is correct. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2012 12:09:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38517#M7743</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2012-01-26T12:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38518#M7744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;MarkGIP wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all I want to make clear that I'm fairly new to SAS and the concept of MACROS. So please be patient with me;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While searching the web I came accross a really helpful MACRO set: DO_OVER annd ARRAY. I adjusted my code and implemented the MACROS at different spots of my code. At first everything worked like a charm until I added a MACRO loop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a simple example:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MEND;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*1. Set Array*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%ARRAY(REGRESSORS,VALUES=A B);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MACRO SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%DO MACRO = 1 %TO 2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*2. Regression*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc reg data=panel;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;model y = %DO_OVER(REGRESSORS);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%end;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MEND SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since then I always get the following error message for the MACRO inside the loop:&lt;/P&gt;&lt;P&gt;NOTE: Line generated by the macro function "TP".&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1 %&amp;amp;MACRO(&amp;amp;&amp;amp;REGRESSORS&amp;amp;I)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;-&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;76&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;ERROR 22-322: Syntax error, expecting one of the following: a name, ;, /, _ALL_, _CHARACTER_, _CHAR_, _NUMERIC_, {.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;﻿&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/EM&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;EM&gt; &lt;/EM&gt; &lt;/P&gt;&lt;P&gt;Hopefully you could help me with this dilemma..... THANK YOU!!!&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have a macro SIMULATION and what appears to be PROC REG inside some kind of macro loop.&amp;nbsp; Are you doing a simulation with many iterations (models/datasets/samples) where you intend to summerize the results?&amp;nbsp; Perhaps some kind of bootstrap or other computer intensive method.&amp;nbsp; If so I suspect you will not be happy with the performance you will get macro looping over multiple call to procs and or data steps.&amp;nbsp; If you are trying to fit a bunch of different models I'm sure there are better ways, using ONE call to PROC REG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2012 14:00:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38518#M7744</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2012-01-26T14:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38519#M7745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've downloaded the macros from: &lt;A href="http://www.sascommunity.org/wiki/File:Clay-TightLooping-macros.zip"&gt;http://www.sascommunity.org/wiki/File:Clay-TightLooping-macros.zip&lt;/A&gt;. Maybe I'm doing something completely wrong but I have no clue whatsoever...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To give you a better idea, I've extended the original example....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*1. Create Data*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Data panel;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;do i=1 to 10;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;a=i*2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;b=log(i);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;c=i;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;end;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*2. Set Array*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%ARRAY(REGRESSORS,VALUES=a b);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*3. Regression*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MACRO SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%DO MACRO = 1 %TO 2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc reg data=panel;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;model c = %DO_OVER(REGRESSORS);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%end;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%MEND SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;%SIMULATION;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Everytime I run the code I get error message mentioned above...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2012 23:16:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38519#M7745</guid>
      <dc:creator>MarkGIP</dc:creator>
      <dc:date>2012-01-27T23:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38520#M7746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for the advise...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But could someone tell me what I'm doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2012 23:20:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38520#M7746</guid>
      <dc:creator>MarkGIP</dc:creator>
      <dc:date>2012-01-27T23:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38521#M7747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran the macros from both of the files in the link above and then ran the code you provided and everything worked fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i delete the do_over macro I get the errror you have, so I wonder if you didn't run both the array and do_over macro code first or if they're stored somewhere else other than your work library. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jan 2012 03:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38521#M7747</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-01-28T03:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38522#M7748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;Hmm, that's strange... The macro code is right above the other code I posted. No clue:(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you though for your effort!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jan 2012 14:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38522#M7748</guid>
      <dc:creator>MarkGIP</dc:creator>
      <dc:date>2012-01-28T14:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38523#M7749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And what is before that?&amp;nbsp; Perhaps a comment has "eaten" your macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jan 2012 19:32:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38523#M7749</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-01-28T19:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38524#M7750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MarkGIP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macros you are using would take a while to work through, even for the best of macro programmers.&amp;nbsp; Not having done that, I would still recommend that you add this as the first line of your macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro SIMULATION;&lt;/P&gt;&lt;P&gt;%local MACRO;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then continue with the rest of the program as is.&amp;nbsp; It is conceivable that this will solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More important is that you are just learning macros.&amp;nbsp; It is very likely you are trying to kill a fly with a sledgehammer here.&amp;nbsp; If you post what you are trying to accomplish (what do you feed into the macro, such as the list A B, and what SAS code are you hoping to generate), you will receive many posts showing you how to accomplish the task in a simple manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2012 15:56:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38524#M7750</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-01-30T15:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Nesting Macros</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38525#M7751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;even with the 2007 version of Ted's macros I don't get your error. Perhaps that is because I submit Ted's macros before running your code. &lt;/P&gt;&lt;P&gt;How do you invoke these macros (autocall or submit)?&lt;/P&gt;&lt;P&gt;In what release of SAS are you running the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2012 17:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Nesting-Macros/m-p/38525#M7751</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2012-01-30T17:32:18Z</dc:date>
    </item>
  </channel>
</rss>

