<?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 %let &amp;amp; Macro issue - WARNING: Apparent symbolic reference XX not resolved.&amp;quot; in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439613#M109725</link>
    <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would like to seek advice in solving the issue of "apparent invocation of macro" issue when i try to use %let and &amp;amp; to call the variable using proc sql statement. Here is the case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let ABC =FY15;&lt;/P&gt;&lt;P&gt;/* the dataset name is "FY15_CDE" */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i want call the macro variable in proc sql statement by:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table temp as&lt;/P&gt;&lt;P&gt;select&amp;nbsp;* from &amp;amp;ABC_CDE;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the warning occurs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;"WARNING: Apparent symbolic reference ABC not resolved."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May i know if there are any advice to solve this?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Fri, 23 Feb 2018 08:03:56 GMT</pubDate>
    <dc:creator>nicolaskan</dc:creator>
    <dc:date>2018-02-23T08:03:56Z</dc:date>
    <item>
      <title>%let &amp; Macro issue - WARNING: Apparent symbolic reference XX not resolved."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439613#M109725</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would like to seek advice in solving the issue of "apparent invocation of macro" issue when i try to use %let and &amp;amp; to call the variable using proc sql statement. Here is the case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let ABC =FY15;&lt;/P&gt;&lt;P&gt;/* the dataset name is "FY15_CDE" */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i want call the macro variable in proc sql statement by:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table temp as&lt;/P&gt;&lt;P&gt;select&amp;nbsp;* from &amp;amp;ABC_CDE;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the warning occurs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;"WARNING: Apparent symbolic reference ABC not resolved."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May i know if there are any advice to solve this?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 08:03:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439613#M109725</guid>
      <dc:creator>nicolaskan</dc:creator>
      <dc:date>2018-02-23T08:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: %let &amp; Macro issue - WARNING: Apparent symbolic reference XX not resolved."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439616#M109726</link>
      <description>&lt;P&gt;The warning should read "WARNING: Apparent symbolic reference ABC_CDE not resolved."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to tell sas that you want the variable ABC resolved, you just have to add a dot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sql;

create table temp as

select * from &amp;amp;ABC._CDE;

quit;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Feb 2018 08:13:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439616#M109726</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2018-02-23T08:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: %let &amp; Macro issue - WARNING: Apparent symbolic reference XX not resolved."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439617#M109727</link>
      <description>&lt;P&gt;Problem solved. Thanks for the quick reply.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 08:16:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439617#M109727</guid>
      <dc:creator>nicolaskan</dc:creator>
      <dc:date>2018-02-23T08:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: %let &amp; Macro issue - WARNING: Apparent symbolic reference XX not resolved."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439625#M109729</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/191475"&gt;@nicolaskan&lt;/a&gt;&amp;nbsp;Then please mark the correct answer as solution.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 08:42:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/let-amp-Macro-issue-WARNING-Apparent-symbolic-reference-XX-not/m-p/439625#M109729</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-02-23T08:42:39Z</dc:date>
    </item>
  </channel>
</rss>

