<?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 Macro resolving in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218617#M40280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello SAS Experts&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Can someone from SAS explain me whats going on with SAS in the following log message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYMBOLGEN:&amp;nbsp; Macro variable ZZ resolves to 11&lt;/P&gt;&lt;P&gt;SYMBOLGEN:&amp;nbsp; Macro variable MDT11 resolves to 9&lt;/P&gt;&lt;P&gt;SYMBOLGEN:&amp;nbsp; Macro variable XX resolves to 5&lt;/P&gt;&lt;P&gt;MLOGIC(RPT):&amp;nbsp; %IF condition (5&amp;lt;=&amp;amp;&amp;amp;mdt&amp;amp;zz&amp;lt;=8 and 4&amp;lt;&amp;amp;xx&amp;lt;=8) is TRUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how is 9&amp;lt;=8 in the above message?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 May 2015 16:42:52 GMT</pubDate>
    <dc:creator>SASSLICK001</dc:creator>
    <dc:date>2015-05-24T16:42:52Z</dc:date>
    <item>
      <title>Macro resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218617#M40280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello SAS Experts&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Can someone from SAS explain me whats going on with SAS in the following log message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYMBOLGEN:&amp;nbsp; Macro variable ZZ resolves to 11&lt;/P&gt;&lt;P&gt;SYMBOLGEN:&amp;nbsp; Macro variable MDT11 resolves to 9&lt;/P&gt;&lt;P&gt;SYMBOLGEN:&amp;nbsp; Macro variable XX resolves to 5&lt;/P&gt;&lt;P&gt;MLOGIC(RPT):&amp;nbsp; %IF condition (5&amp;lt;=&amp;amp;&amp;amp;mdt&amp;amp;zz&amp;lt;=8 and 4&amp;lt;&amp;amp;xx&amp;lt;=8) is TRUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how is 9&amp;lt;=8 in the above message?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 May 2015 16:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218617#M40280</guid>
      <dc:creator>SASSLICK001</dc:creator>
      <dc:date>2015-05-24T16:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Macro resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218618#M40281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Macro Language does not handle expressions like 4&amp;lt;&amp;amp;xx&amp;lt;=8, instead you have to code this using an AND, see also &lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/68140/HTML/default/viewer.htm#n1alyfc9f4qrten10sd5qz5e1w5q.htm" title="http://support.sas.com/documentation/cdl/en/mcrolref/68140/HTML/default/viewer.htm#n1alyfc9f4qrten10sd5qz5e1w5q.htm"&gt;SAS(R) 9.4 Macro Language: Reference, Third Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 May 2015 21:58:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218618#M40281</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2015-05-24T21:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Macro resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218619#M40282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Macro language handles combinations such as 5 &amp;lt;= 9 &amp;lt;= 8 from left to right.&amp;nbsp; It resolves as if you had added parentheses:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(5 &amp;lt;= 9) &amp;lt;= 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So 5 &amp;lt;= 9 resolves to either 0 (if false ) or 1 (if true), both of which are less than 8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2015 00:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218619#M40282</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-05-25T00:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Macro resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218620#M40283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for this insight..good to know!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2015 20:57:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-resolving/m-p/218620#M40283</guid>
      <dc:creator>SASSLICK001</dc:creator>
      <dc:date>2015-05-25T20:57:39Z</dc:date>
    </item>
  </channel>
</rss>

