<?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: Strange Macro behavior in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335154#M75806</link>
    <description>&lt;P&gt;Because this is a data step you don't the macro conditions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you replace it with data step code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if "&amp;amp;id" = "E" and ACCT_TYPE in ('AN','AU','BO','HM','MO','TN','TR','TU','VN','VU') then delete;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Feb 2017 00:01:35 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-02-23T00:01:35Z</dc:date>
    <item>
      <title>Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335153#M75805</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am passing two parameters for the condition but the condition using id parameter highlighted in below is not being executed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%Macro Anlsys (tab,id);&lt;/P&gt;&lt;P&gt;%put &amp;amp;tab;&lt;BR /&gt;%put &amp;amp;id;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%if &amp;amp;id=T %then %do;&lt;/P&gt;&lt;P&gt;Data &amp;amp;tab._New;&lt;BR /&gt;%if &amp;amp;tab=C13 %then %do;&lt;BR /&gt;set S04_&amp;amp;tab.;&lt;BR /&gt;%end;&lt;BR /&gt;%else %do;&lt;BR /&gt;set S02_&amp;amp;tab.;&lt;BR /&gt;%end;&lt;BR /&gt;If Cd='4' then delete;&lt;BR /&gt;If Pcd in ('S','C') then delete;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%if &amp;amp;tab=C7 %then %do;&lt;BR /&gt;If INFO_CD in ('','Q') then delete;&lt;BR /&gt;%end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;BR /&gt;create table &amp;amp;tab._mtx_mrg as&lt;BR /&gt;select t1.*,t2.Flg&lt;BR /&gt;from &amp;amp;tab._New as t1 left join &amp;amp;tab._EQ as t2 on&lt;BR /&gt;%If &amp;amp;tab=C13 %then %do;&lt;BR /&gt;(t1.Bk_1=t2.Bk_P;&lt;BR /&gt;%end;&lt;BR /&gt;%else %do;&lt;BR /&gt;(t1.Bk_1=t2.Bk_P);&lt;BR /&gt;%end;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;Data &amp;amp;tab._Req &amp;amp;tab._Rsch;&lt;BR /&gt;set &amp;amp;tab._mtx_mrg;&lt;BR /&gt;If flg = 'No' then delete;&lt;BR /&gt;If flg= 'Yes' then output &amp;amp;tab._Req;&lt;BR /&gt;else output &amp;amp;tab._Rsch;&lt;BR /&gt;run;&lt;BR /&gt;%end;&lt;/P&gt;&lt;P&gt;%else %do;&lt;/P&gt;&lt;P&gt;Data &amp;amp;tab._&amp;amp;id.;&lt;/P&gt;&lt;P&gt;%if &amp;amp;tab=C13 %then %do;&lt;BR /&gt;set S04_&amp;amp;tab.;&lt;BR /&gt;%end;&lt;BR /&gt;%else %do;&lt;BR /&gt;set S02_&amp;amp;tab.;&lt;BR /&gt;%end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;%if &amp;amp;id=E %then %do;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;if ACCT_TYPE in ('AN','AU','BO','HM','MO','TN','TR','TU','VN','VU') then delete;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;%end;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if ACCT_TYPE in ('CD','NC','HI','PB') then delete;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%Mend;&lt;/P&gt;&lt;P&gt;%Anlsys(C13,T);&lt;/P&gt;&lt;P&gt;%Anlsys(C7,E);&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 23:55:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335153#M75805</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2017-02-22T23:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335154#M75806</link>
      <description>&lt;P&gt;Because this is a data step you don't the macro conditions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you replace it with data step code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if "&amp;amp;id" = "E" and ACCT_TYPE in ('AN','AU','BO','HM','MO','TN','TR','TU','VN','VU') then delete;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:01:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335154#M75806</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-23T00:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335155#M75807</link>
      <description>&lt;P&gt;Without having access to the datasets, it's hard to see. Can you do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option mprint notes symbolgen mlogic;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;then rerun and show the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335155#M75807</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T00:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335156#M75808</link>
      <description>&lt;P&gt;But&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, the code is being generated as part of a data step&amp;nbsp;&lt;EM&gt;within&lt;/EM&gt; the macro. Theoretically the line should be generated on the second call.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:04:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335156#M75808</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T00:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335157#M75809</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/17429"&gt;@LaurieF&lt;/a&gt;&amp;nbsp;I agree it should work, just positing a work around. Personally, I find working within data step code whenever possible makes it easier on me in the long run, but that seems to be personal preference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I've had this discussion with someone on here before and using the macro's makes it slightly more efficient due to how/when the macro variables resolve.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335157#M75809</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-23T00:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335158#M75810</link>
      <description>&lt;P&gt;Hmm it's strange it worked like you suggested&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335158#M75810</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2017-02-23T00:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335159#M75811</link>
      <description>&lt;P&gt;If you want to fix the macro, I would do&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/17429"&gt;@LaurieF&lt;/a&gt;&amp;nbsp;suggestion and run the second macro with MPRINT/SYMBOLGEN on and see what happens at that step. Post the log if you can't figure it out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:09:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335159#M75811</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-23T00:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335160#M75812</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, I love macros. They're my thing. But they're only my thing to stop me doing repetative work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd still love to see the log with the debugging stuff turned on though.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:13:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335160#M75812</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T00:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335161#M75813</link>
      <description>&lt;P&gt;Hang on - your macro isn't compiling - you've got a missmatch between your&amp;nbsp;&lt;EM&gt;%do&lt;/EM&gt;s and&amp;nbsp;&lt;EM&gt;%end&lt;/EM&gt;s. That'll make a difference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And this ain't good:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%If &amp;amp;tab=C13 %then %do;
(t1.Bk_1=t2.Bk_P;
%end;
%else %do;
(t1.Bk_1=t2.Bk_P);
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The two conditional lines are identical&amp;nbsp;&lt;EM&gt;except&lt;/EM&gt; the first one is missing a closing parenthesis. Oops!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:25:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335161#M75813</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T00:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335162#M75814</link>
      <description>&lt;P&gt; Formatted code for legibility&lt;/P&gt;

&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%Macro Anlsys (tab,id);
	%put &amp;amp;tab;
	%put &amp;amp;id;

	%if &amp;amp;id=T %then
		%do;

			Data &amp;amp;tab._New;
				%if &amp;amp;tab=C13 %then
					%do;
						set S04_&amp;amp;tab.;
					%end;
				%else
					%do;
						set S02_&amp;amp;tab.;
					%end;

				If Cd='4' then
					delete;

				If Pcd in ('S','C') then
					delete;

				%if &amp;amp;tab=C7 %then
					%do;
						If INFO_CD in ('','Q') then
							delete;
					%end;
			run;

			proc sql noprint;
				create table &amp;amp;tab._mtx_mrg as
					select t1.*,t2.Flg
						from &amp;amp;tab._New as t1 left join &amp;amp;tab._EQ as t2 on
							%If &amp;amp;tab=C13 %then

					%do;
						(t1.Bk_1=t2.Bk_P;
					%end;
				%else
					%do;
						(t1.Bk_1=t2.Bk_P);
					%end;
			quit;

			Data &amp;amp;tab._Req &amp;amp;tab._Rsch;
				set &amp;amp;tab._mtx_mrg;

				If flg = 'No' then
					delete;

				If flg= 'Yes' then
					output &amp;amp;tab._Req;
				else output &amp;amp;tab._Rsch;
			run;

		%end;
	%else
		%do;

			Data &amp;amp;tab._&amp;amp;id.;
				%if &amp;amp;tab=C13 %then
					%do;
						set S04_&amp;amp;tab.;
					%end;
				%else
					%do;
						set S02_&amp;amp;tab.;
					%end;

				%if &amp;amp;id=E %then
					%do;
						if ACCT_TYPE in ('AN','AU','BO','HM','MO','TN','TR','TU','VN','VU') then
							delete;
					%end;

				if ACCT_TYPE in ('CD','NC','HI','PB') then
					delete;
			run;

%mend;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:20:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335162#M75814</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-23T00:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335163#M75815</link>
      <description>&lt;P&gt;This is what you need to fix up to make the macro compile (the last line needs adding)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%else %do;
Data &amp;amp;tab._&amp;amp;id.;
%if &amp;amp;tab=C13 %then %do;
set S04_&amp;amp;tab.;
%end;
%else %do;
set S02_&amp;amp;tab.;
%end;
&lt;STRONG&gt;%end;&lt;/STRONG&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You missed out the last&amp;nbsp;&lt;EM&gt;%&lt;/EM&gt;end&lt;EM&gt; -&lt;/EM&gt; but you have other problems in the code as well…&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:29:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335163#M75815</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T00:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335165#M75817</link>
      <description>&lt;P&gt;I ran it with options i custmozied the code while posting as it's confidential but when i checked the log with original code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i made modification as reeza suggested it saying it's true and when in the same code with out suggestion it says false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;SYMBOLGEN: Macro variable ID resolves to EQ&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;MLOGIC(TDR_EQ_NONEQ): %IF condition "&amp;amp;id"="EQ" is TRUE&lt;/FONT&gt;&lt;BR /&gt;MPRINT(TDR_EQ_NONEQ): if RT_ACCT_TYPE in ('AN','AU','BO','HM','MO','TN','TR','TU','VN','VU')&lt;BR /&gt;then delete;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable TAB resolves to CH13&lt;BR /&gt;SYMBOLGEN: Macro variable ID resolves to EQ&lt;BR /&gt;MPRINT(TDR_EQ_NONEQ): Data CH13_EQ_cln;&lt;BR /&gt;SYMBOLGEN: Macro variable TAB resolves to CH13&lt;BR /&gt;SYMBOLGEN: Macro variable ID resolves to EQ&lt;BR /&gt;MPRINT(TDR_EQ_NONEQ): set CH13_EQ;&lt;BR /&gt;&lt;FONT color="#FF9900"&gt;SYMBOLGEN: Macro variable ID resolves to EQ&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF9900"&gt;MLOGIC(TDR_EQ_NONEQ): %IF condition &amp;amp;id=EQ is FALSE&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:31:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335165#M75817</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2017-02-23T00:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335166#M75818</link>
      <description>&lt;P&gt;I suspect when you modified the code, you missed some stuff out. When I fixed up the two bugs I showed, it did compile, and it did appear to generate the right stuff.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:33:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335166#M75818</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T00:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335167#M75819</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/17429"&gt;@LaurieF&lt;/a&gt;&amp;nbsp;i am running multiple conditions in the datastep id i use %end in the datastep then other conditions won't execute.The program is running woth out errors but without parenthesis the macro is not taking the value&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 00:34:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335167#M75819</guid>
      <dc:creator>JasonNC</dc:creator>
      <dc:date>2017-02-23T00:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335182#M75824</link>
      <description>&lt;P&gt;By George, I've got it - and it was, as it so often is, macro quoting, as hinted at by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you replace the macro comparison with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if %nrquote(&amp;amp;id) = %nrquote(EQ) %then %do;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which effectively does the same thing as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s suggestion, it all falls into place. Without the quoting, it's interpreted logically along the lines of&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if EQ EQ EQ %then %do;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;which&amp;nbsp;&lt;EM&gt;will&lt;/EM&gt; parse at execution time, after a fashion, but it's meaningless.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because&amp;nbsp;&lt;EM&gt;eq&lt;/EM&gt; is a reserved operand in macro code, it has to be quoted so that it isn't interpreted as an operand.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 02:58:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335182#M75824</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T02:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335184#M75826</link>
      <description>&lt;P&gt;NE is another than crops up commonly when dealing with this issue&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 03:05:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335184#M75826</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-23T03:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335188#M75829</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/17429"&gt;@LaurieF&lt;/a&gt;&amp;nbsp;You're giving me way too much credit...sometimes I just find if something doesn't work, move on otherwise you get stuck.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is a case where if the EQ was present someone could&amp;nbsp;have said what the error was from the start.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An example of why &lt;A href="http://stackoverflow.com/help/mcve" target="_self"&gt;Minimum, Complete, Verifiable&lt;/A&gt; examples are important.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2017 03:12:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335188#M75829</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-23T03:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Macro behavior</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335191#M75830</link>
      <description>&lt;GRIN&gt; When all else fails, ask WWACD? (What would Art Carpenter do?&amp;gt;&lt;BR /&gt;&lt;/GRIN&gt;</description>
      <pubDate>Thu, 23 Feb 2017 03:36:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Macro-behavior/m-p/335191#M75830</guid>
      <dc:creator>LaurieF</dc:creator>
      <dc:date>2017-02-23T03:36:46Z</dc:date>
    </item>
  </channel>
</rss>

