<?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: macro question in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146295#M29131</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wasn't advertising the forum but, rather, one person's responses which, for the most part, will be related to the SAS macro language.&amp;nbsp; However, since you mention it, that forum has been around since 1986&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Nov 2013 14:07:19 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2013-11-18T14:07:19Z</dc:date>
    <item>
      <title>macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146282#M29118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the advantage of %if... %then over if .. then..?&lt;/P&gt;&lt;P&gt;I mean what is it that " %" does over not having it?&lt;/P&gt;&lt;P&gt;In one of the problems here someone mentioned if we are to compare values within a&amp;nbsp; dataset we should not use the "%".&lt;/P&gt;&lt;P&gt;Can someone please elaborate this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 05:14:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146282#M29118</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-16T05:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146283#M29119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The '%' tells SAS that this is SAS macro language.&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www2.sas.com/proceedings/sugi29/243-29.pdf"&gt;http://www2.sas.com/proceedings/sugi29/243-29.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.mwsug.org/proceedings/2012/DM/MWSUG-2012-DM11.pdf" title="http://www.mwsug.org/proceedings/2012/DM/MWSUG-2012-DM11.pdf"&gt;http://www.mwsug.org/proceedings/2012/DM/MWSUG-2012-DM11.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 08:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146283#M29119</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-11-16T08:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146284#M29120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good articles Patrick,thanks !&lt;/P&gt;&lt;P&gt;Yes i do know that &amp;amp; is for a&amp;nbsp; macro variable and % for&amp;nbsp; a macro but within a macro code&amp;nbsp; we can have %if ...% then and&amp;nbsp; we can also have if... then...,am i correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i was wondering what the difference was&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 17:22:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146284#M29120</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-16T17:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146285#M29121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To answer your own question you have to read the links that Patrick provided, as well as anything else you can find regarding the SAS macro language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A SAS macro's code can contain a data step, but a data step cannot contain SAS macro code, only compiled macros.&amp;nbsp; And, within a SAS macro, a %if statement doesn't have to be within a data step, but can be.&amp;nbsp; 'If' statements, themselves, can only occur within a data step.&amp;nbsp; But, to understand their utility, you first have to learn what they are, how they can be used, and their functionality within a SAS program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 17:36:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146285#M29121</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-11-16T17:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146286#M29122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Arthur. I did actually read several articles about macros and could not find the answer to my own question,maybe i did not read the right ones but thanks for the explanation.I will definitely go over these 2 articles in details &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 20:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146286#M29122</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-16T20:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146287#M29123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at: &lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#a000543542.htm" style="font-size: 10pt; line-height: 1.5em;" title="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#a000543542.htm"&gt;SAS(R) 9.2 Macro Language: Reference&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 22:21:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146287#M29123</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-11-16T22:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146288#M29124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The link to the macro doc &lt;A __default_attr="149594" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; provided will give you all the information you need. Start reading "Understanding and Using the Macro Facility"&lt;/P&gt;&lt;P&gt;I also found this introduction from &lt;A __default_attr="63295" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://communities.sas.com/"&gt;&lt;/A&gt;: &lt;A href="http://support.sas.com/resources/papers/proceedings13/120-2013.pdf" title="http://support.sas.com/resources/papers/proceedings13/120-2013.pdf"&gt;http://support.sas.com/resources/papers/proceedings13/120-2013.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a general and oversimplified level:&lt;/P&gt;&lt;P&gt;- Everything "macro" gets executed (and the '%' and '&amp;amp;' are the tokens telling SAS that a word in the SAS code is macro language).&lt;/P&gt;&lt;P&gt;- After macro execution the remaining "text" is then interpreted by the SAS compiler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So macro language is kind-of pre-processing to "normal" SAS language allowing you to dynamically generate SAS code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. below macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* compile macro */&lt;/P&gt;&lt;P&gt;options mprint;&lt;/P&gt;&lt;P&gt;%macro test(parameter);&lt;/P&gt;&lt;P&gt;&amp;nbsp; %if &amp;amp;parameter=1 %then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set sashelp.cars;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&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;/* call macro - so here the macro gets executed */&lt;/P&gt;&lt;P&gt;%test(1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using "options mprint" what you then can see in the log is the "result" of the macro execution, so the bit which will be executed by the "normal" SAS language.&lt;/P&gt;&lt;P&gt;39&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %test(1)&lt;/P&gt;&lt;P&gt;MPRINT(TEST):&amp;nbsp;&amp;nbsp; data test;&lt;/P&gt;&lt;P&gt;MPRINT(TEST):&amp;nbsp;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;MPRINT(TEST):&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Nov 2013 01:46:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146288#M29124</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-11-17T01:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146289#M29125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt; I highly recommend that you read the doc and other links that have been provided. Here's a simple explanation. The "regular" IF statement "belongs" to the SAS DATA step language syntax. You can ONLY use a "regular" IF statement in a DATA step program:&lt;/P&gt;&lt;P&gt;data new;&lt;/P&gt;&lt;P&gt; set sashelp.class;&lt;/P&gt;&lt;P&gt; if sex = 'F' then wt_in_5 = weight*1.10;&lt;/P&gt;&lt;P&gt;else if sex = 'M' then wt_in_5 = weight*1.20;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The "regular" IF statement has NOTHING to do with the SAS Macro facility. A "regular" IF statement is used to alter the way a DATA step program executes...by specifying statements that work conditionally within a SAS DATA step program. As shown above, the new variable WT_IN_5 will be calculated one way for females and a different way for males.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The Macro Facility %IF "belongs" in a SAS Macro program definition. A %IF statement is used within a macro program to conditionally generate code, as illustrated in Patrick's example macro program. You could have a macro program definition that generated complete steps, partial steps, complete statements or partial statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; As Art pointed out, a SAS Macro program could, but does not have to, contain DATA step code. A SAS Macro program and a SAS Macro %IF will reference macro variables, such as Patrick showed: &lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; line-height: 1.5em;"&gt;%if &amp;amp;parameter=1 %then &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; line-height: 1.5em;"&gt;%do -- however, a DATA step program will use a "regular" IF to reference DATA step variables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; line-height: 1.5em;"&gt;&amp;nbsp; First, you need to understand how a DATA step program works; and the utility of the "regular" IF in a DATA step program. Then, you need to understand the utility of the SAS Macro Facility to generate code for you....any kind of code. Within the SAS Macro Facility and inside a SAS Macro program definition, the %IF statement is a Macro logic statement. It has a place in a SAS Macro program. It has no place in a DATA step program. A Macro %IF can control what type of DATA step code gets generated by the Macro processor, but, as Patrick showed, your generated code does NOT have to contain any IF statements at all. On the other hand, a DATA step IF has no control over SAS macro statements.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Nov 2013 05:45:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146289#M29125</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-11-17T05:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146290#M29126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cynthia ,Art and Patrick thanks for your thorough explanations. I'd probably find this info in the articles but no understand as clear as you have explained here.Million Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Nov 2013 18:34:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146290#M29126</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-17T18:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146291#M29127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tal&lt;/P&gt;&lt;P&gt;Can you please mark the answers as helpful/correct so that your question appears as answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Nov 2013 20:17:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146291#M29127</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-11-17T20:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146292#M29128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey Patrick,&lt;/P&gt;&lt;P&gt;Thanks again for the article by Cynthia you sent me.Just went over it and&amp;nbsp; this is&amp;nbsp; actually what i was looking for.Straight to the point,best ever introduction for Macros I've read.&lt;/P&gt;&lt;P&gt;Thanks Cynthia!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 01:42:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146292#M29128</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-18T01:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146293#M29129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you REALLY want to learn the ins and outs about the SAS macro language do the following search and then read every response that Ian Whitlock made on SAS-L over the years:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?S2=sas-l&amp;amp;D=1&amp;amp;F=P&amp;amp;H=0&amp;amp;O=D&amp;amp;T=1&amp;amp;q=&amp;amp;s=&amp;amp;f=iw1&amp;amp;a=&amp;amp;b=" title="http://www.listserv.uga.edu/cgi-bin/wa?S2=sas-l&amp;amp;D=1&amp;amp;F=P&amp;amp;H=0&amp;amp;O=D&amp;amp;T=1&amp;amp;q=&amp;amp;s=&amp;amp;f=iw1&amp;amp;a=&amp;amp;b="&gt;Search results -- SAS-L&amp;lt;/title&amp;gt;&amp;lt;style type="text/css"&amp;gt;&amp;lt;!--BODY { font-family: "Comic Sans MS",arial, helvetica, sans-serif; font-size: 14px; color: black; background-color: white; }TD, TH, FONT, .BOD { font-family: "Comic Sans MS", arial, helvetica, sans-serif; font-size: 14px; margin-left: 0px; margin-right: 0px; color: black; }SUP { font-family: courier,monospace; font-size: 12px; text-decoration: none; }KBD {font-family: courier,monospace;}PRE {font-family: courier,monospace;} .SMALL {font-size: 12px} .SMALLER {font-size: 10px} .LARGE {font-size: 16px} .LARGER {font-size: 18px} .FOOT {font-size: 12px; color: gray } .BLOCK { font-size: 12px; color: #555555; text-align: justify; } .FIXED { font-family: courier,monospaced; font-size:12pt }STRONG {font-weight: bold }EM { font-style: italic; }A:LINK { text-decoration: none; color: #0000FF; }A:VISITED { text-decoration: none; color: #0000FF; }A:ACTIVE { text-decoration: none; color: #0000FF; }A:HOVER { text-decoration: none; color: #ad080a; }H1 { font-size: 22px; }H2 { font-size: 20px; }H3 { font-size: 18px; }--&amp;gt;&amp;lt;/style&amp;gt;&amp;lt;!-- This is the top part for sub pages (topsub.html) 12/10/99 16:05 --&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;LISTSERV at the University of Georgia&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, beware!&amp;nbsp; There is an awfully lot of stuff there to read.&amp;nbsp; However, there is also an awfully lot of important concepts that you won't find in any of the documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 02:11:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146293#M29129</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-11-18T02:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146294#M29130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nice!&lt;/P&gt;&lt;P&gt;looks like another forum with lot of problems and solutions.&lt;/P&gt;&lt;P&gt;Thanks Art!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 02:26:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146294#M29130</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-18T02:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: macro question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146295#M29131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wasn't advertising the forum but, rather, one person's responses which, for the most part, will be related to the SAS macro language.&amp;nbsp; However, since you mention it, that forum has been around since 1986&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 14:07:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/macro-question/m-p/146295#M29131</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-11-18T14:07:19Z</dc:date>
    </item>
  </channel>
</rss>

