<?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: &amp;&amp; in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146231#M38837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is Forward Re-scan rule. If you have SAS advanced Certification Book they explained in Chapter 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.caliberdt.com/tips/May2006.htm"&gt;http://www.caliberdt.com/tips/May2006.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Nov 2013 16:59:53 GMT</pubDate>
    <dc:creator>sassharp</dc:creator>
    <dc:date>2013-11-18T16:59:53Z</dc:date>
    <item>
      <title>&amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146225#M38831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could some explain to me what is the difference between single and double ampersand.&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 21:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146225#M38831</guid>
      <dc:creator>R_A_G_</dc:creator>
      <dc:date>2013-11-16T21:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146226#M38832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the doco :&lt;BR /&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#a001071915.htm" title="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#a001071915.htm"&gt; Macro Language: Reference&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 21:42:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146226#M38832</guid>
      <dc:creator>JerryLeBreton</dc:creator>
      <dc:date>2013-11-16T21:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146227#M38833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Multiple &amp;amp;&amp;amp; will let the macro processor know that it needs to rescan the token to fully evaluate the macro variable reference. This will allow you to use a macro variable to hold the ame of the variable that you actually what. &lt;/P&gt;&lt;P&gt;%Let name=var1;&lt;/P&gt;&lt;P&gt;%let var1=45;&lt;/P&gt;&lt;P&gt;%let n=1;&lt;/P&gt;&lt;P&gt;%put &amp;amp;&amp;amp;var&amp;amp;n;&lt;/P&gt;&lt;P&gt;%put &amp;amp;&amp;amp;&amp;amp;name;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Nov 2013 18:00:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146227#M38833</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-17T18:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146228#M38834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;amp;&amp;amp; and &amp;amp; resolve the same value,right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 06:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146228#M38834</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2013-11-18T06:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146229#M38835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A double ampersand resolves to a single ampersand. &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Try using:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;options symbolgen;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before @Tom's macro code to see messages in the log explaining what is being resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 12:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146229#M38835</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2013-11-18T12:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146230#M38836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, and also trigger the compiler to re-evaluate the result.&lt;/P&gt;&lt;P&gt;So &amp;amp;&amp;amp;var&amp;amp;n --&amp;gt; &amp;amp;var1 --&amp;gt; 45&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 15:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146230#M38836</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-18T15:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146231#M38837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is Forward Re-scan rule. If you have SAS advanced Certification Book they explained in Chapter 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.caliberdt.com/tips/May2006.htm"&gt;http://www.caliberdt.com/tips/May2006.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 16:59:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146231#M38837</guid>
      <dc:creator>sassharp</dc:creator>
      <dc:date>2013-11-18T16:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146232#M38838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how about &amp;amp;&amp;amp;&amp;amp;name ? &lt;/P&gt;&lt;P&gt;what would this resolves into?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 02:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146232#M38838</guid>
      <dc:creator>R_A_G_</dc:creator>
      <dc:date>2013-11-19T02:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: &amp;&amp;</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146233#M38839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;45&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 02:53:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/unreadable-title/m-p/146233#M38839</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-11-19T02:53:58Z</dc:date>
    </item>
  </channel>
</rss>

