<?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: Why this happens? many thks in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1950#M120</link>
    <description>Hi friends,&lt;BR /&gt;
please advice and guidance to get results and if you interested please attach any programmes otherwise ignore my problem.if you interested please attach my mail id-sudhakar.987@gmail.com &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thank ,</description>
    <pubDate>Wed, 21 Mar 2007 07:06:33 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2007-03-21T07:06:33Z</dc:date>
    <item>
      <title>Why this happens? many thks</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1943#M113</link>
      <description>%let a=1;&lt;BR /&gt;
%let b=2;&lt;BR /&gt;
%let ab=a b;&lt;BR /&gt;
%symdel &amp;amp;ab;&lt;BR /&gt;
&lt;BR /&gt;
the above statements works well, but the below will make error:&lt;BR /&gt;
&lt;BR /&gt;
%macro test;&lt;BR /&gt;
 %let a=1;&lt;BR /&gt;
 %let b=2;&lt;BR /&gt;
 %let ab=a b;&lt;BR /&gt;
 %symdel &amp;amp;ab;&lt;BR /&gt;
%mend;&lt;BR /&gt;
%test;&lt;BR /&gt;
&lt;BR /&gt;
ERROR: Macro variable name &amp;amp; must start with a letter or underscore.</description>
      <pubDate>Fri, 08 Dec 2006 06:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1943#M113</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-12-08T06:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Why this happens? many thks</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1944#M114</link>
      <description>%SYMDEL only deletes GLOBAL macro-variables, hence does not delete (does not have access to) macro-variables created inside a macro-program (except if declared global when created).&lt;BR /&gt;
This would work :&lt;BR /&gt;
&lt;BR /&gt;
%MACRO test ;&lt;BR /&gt;
%GLOBAL a ;&lt;BR /&gt;
%GLOBAL b ;&lt;BR /&gt;
%GLOBAL ab ;&lt;BR /&gt;
%LET a = 1 ; %LET b = 2 ; %LET ab = a b ;&lt;BR /&gt;
%SYMDEL &amp;amp;ab ;&lt;BR /&gt;
%MEND test ;&lt;BR /&gt;
%test ;</description>
      <pubDate>Fri, 08 Dec 2006 10:41:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1944#M114</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2006-12-08T10:41:06Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1945#M115</link>
      <description>in v9 it's ok, BUT in v8 it would make error .</description>
      <pubDate>Mon, 11 Dec 2006 00:47:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1945#M115</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-12-11T00:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why this happens? many thks</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1946#M116</link>
      <description>I do not have problems, using either version 9 or 8.2 (hot fix bundle 82BX07). What does exactly your error say ?</description>
      <pubDate>Tue, 12 Dec 2006 08:23:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1946#M116</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2006-12-12T08:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: Why this happens? many thks</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1947#M117</link>
      <description>1    %MACRO test ;&lt;BR /&gt;
2    %GLOBAL a ;&lt;BR /&gt;
3    %GLOBAL b ;&lt;BR /&gt;
4    %GLOBAL ab ;&lt;BR /&gt;
5    %LET a = 1 ; %LET b = 2 ; %LET ab = a b ;&lt;BR /&gt;
6    %SYMDEL &amp;amp;ab ;&lt;BR /&gt;
7    %MEND test ;&lt;BR /&gt;
8    %test ;&lt;BR /&gt;
ERROR: Macro variable name &amp;amp; must start with a letter or underscore.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
BUT  Test2 will be ok&lt;BR /&gt;
&lt;BR /&gt;
19   %MACRO test2 ;&lt;BR /&gt;
20   %GLOBAL a ;&lt;BR /&gt;
21   %GLOBAL b ;&lt;BR /&gt;
22   %GLOBAL ab ;&lt;BR /&gt;
23   %LET a = 1 ; %LET b = 2 ; %LET ab = a b ;&lt;BR /&gt;
24   %unquote(%nrstr(%SYMDEL &amp;amp;ab)) ;&lt;BR /&gt;
25   %MEND test2 ;&lt;BR /&gt;
26   %test2 ;</description>
      <pubDate>Thu, 14 Dec 2006 10:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1947#M117</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-12-14T10:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why this happens? many thks</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1948#M118</link>
      <description>This is a known bug:  &lt;A href="http://support.sas.com/techsup/unotes/SN/005/005975.html" target="_blank"&gt;http://support.sas.com/techsup/unotes/SN/005/005975.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Why worry about it, any macro variable that was not previously defined as a global macro variable is local to that macro.  Thus, when the macro is finished executing the macro variables goes away.  Deleting them is just redundent and makes the code more confusing.</description>
      <pubDate>Fri, 15 Dec 2006 22:17:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1948#M118</guid>
      <dc:creator>TobyDunn_hotmail_com</dc:creator>
      <dc:date>2006-12-15T22:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Thanks!</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1949#M119</link>
      <description>Thanks</description>
      <pubDate>Tue, 19 Dec 2006 09:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1949#M119</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-12-19T09:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why this happens? many thks</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1950#M120</link>
      <description>Hi friends,&lt;BR /&gt;
please advice and guidance to get results and if you interested please attach any programmes otherwise ignore my problem.if you interested please attach my mail id-sudhakar.987@gmail.com &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thank ,</description>
      <pubDate>Wed, 21 Mar 2007 07:06:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Why-this-happens-many-thks/m-p/1950#M120</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-21T07:06:33Z</dc:date>
    </item>
  </channel>
</rss>

