<?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: Apparent symbolic reference PATH not resolved in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525750#M6816</link>
    <description>That fixed it. Thank you so much</description>
    <pubDate>Wed, 09 Jan 2019 15:57:49 GMT</pubDate>
    <dc:creator>rachelgabbard0</dc:creator>
    <dc:date>2019-01-09T15:57:49Z</dc:date>
    <item>
      <title>Apparent symbolic reference PATH not resolved</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525722#M6813</link>
      <description>&lt;P&gt;libname np xlsx "/home/rachelgabbard0/EPG194/data/np_info.xlsx";&lt;BR /&gt;/* Enterprise Guide: */&lt;BR /&gt;libname np xlsx "&amp;amp;path/np_info.xlsx";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my code and this is the warning I get&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: Apparent symbolic reference PATH not resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am in the essentials course and am trying to learn SAS for work.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 14:41:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525722#M6813</guid>
      <dc:creator>rachelgabbard0</dc:creator>
      <dc:date>2019-01-09T14:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Apparent symbolic reference PATH not resolved</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525724#M6814</link>
      <description>&lt;P&gt;&amp;amp;path in this case is a macro variable&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the error message indicates that macro variable &amp;amp;path does not exist, and so it can't be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thus you have to give &amp;amp;path a value (it's probably a folder name where the Excel file &lt;SPAN&gt;np_info.xlsx&amp;nbsp;&lt;/SPAN&gt;is stored). So on my computer, I could use this line of code at the start of my program:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let path=c:\users\pmiller\documents;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Naturally, your value for path will be different.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 14:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525724#M6814</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-09T14:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Apparent symbolic reference PATH not resolved</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525725#M6815</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;amp;path -- This is referencing a macro variable, you need to learn about macros in SAS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Macro variable 'path' has to be defined first in order to reference it later.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&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;%let path = /home/rachelgabbard0/EPG194/data;
options symbolgen;
libname np xlsx "&amp;amp;path/np_info.xlsx";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here the Symbolgen option will tell you the values that was replaced in place of the macro reference in log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;SYMBOLGEN:  Macro variable PATH resolves to /home/rachelgabbard0/EPG194/data&lt;/PRE&gt;
&lt;P&gt;This means &amp;amp;path was replaced by&amp;nbsp;/home/rachelgabbard0/EPG194/data&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 14:52:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525725#M6815</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2019-01-09T14:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Apparent symbolic reference PATH not resolved</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525750#M6816</link>
      <description>That fixed it. Thank you so much</description>
      <pubDate>Wed, 09 Jan 2019 15:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Apparent-symbolic-reference-PATH-not-resolved/m-p/525750#M6816</guid>
      <dc:creator>rachelgabbard0</dc:creator>
      <dc:date>2019-01-09T15:57:49Z</dc:date>
    </item>
  </channel>
</rss>

