<?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: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552711#M153663</link>
    <description>&lt;P&gt;Hi, I did that and SAS says it exists. What do I do not? Run the code again that I have in my question?&lt;/P&gt;</description>
    <pubDate>Sun, 21 Apr 2019 18:45:38 GMT</pubDate>
    <dc:creator>khalillx</dc:creator>
    <dc:date>2019-04-21T18:45:38Z</dc:date>
    <item>
      <title>I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552666#M153631</link>
      <description>&lt;P&gt;This is my first time ever doing this. Yet I was given the code for it and I'm not sure why it's not working. I'm trying to read in a permanent SAS data set and analyze the data. I put the data set into the folder I'm using, wrote down the exact code my professor gave us and I get the error message that the file does not exist. It's in my folder I assure you so I'm not sure what could be wrong. Yet, I've never done this before, I usually just import excel files into SAS so I don't understand what could be wrong. Here is my code, I hid my pathway:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname session1 "C:\x";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data one;&lt;BR /&gt;set session1.hmda_subset_rev19;&lt;BR /&gt;proc conents;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what's in the log:&lt;/P&gt;&lt;P&gt;libname session1 "C:\x";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\x&lt;/P&gt;&lt;P&gt;2 data one;&lt;BR /&gt;3 set session1.hmda_subset_rev19;&lt;BR /&gt;ERROR: File SESSION1.HMDA_SUBSET_REV19.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.ONE may be incomplete. When this step was stopped there were 0 observations and 0 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4 proc conents;&lt;BR /&gt;ERROR: Procedure CONENTS not found.&lt;BR /&gt;5 run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know what is going wrong. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 04:40:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552666#M153631</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-04-21T04:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552668#M153632</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4 proc conents;&lt;BR /&gt;ERROR: Procedure &lt;STRONG&gt;CONENTS&lt;/STRONG&gt; not found.&lt;BR /&gt;5 run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;typo error conents&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Proc contents data=session1._all_ nods;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run the above and verify&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257791"&gt;@khalillx&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This is my first time ever doing this. Yet I was given the code for it and I'm not sure why it's not working. I'm trying to read in a permanent SAS data set and analyze the data. I put the data set into the folder I'm using, wrote down the exact code my professor gave us and I get the error message that the file does not exist. It's in my folder I assure you so I'm not sure what could be wrong. Yet, I've never done this before, I usually just import excel files into SAS so I don't understand what could be wrong. Here is my code, I hid my pathway:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname session1 "C:\x";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data one;&lt;BR /&gt;set session1.hmda_subset_rev19;&lt;BR /&gt;proc conents;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is what's in the log:&lt;/P&gt;
&lt;P&gt;libname session1 "C:\x";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\x&lt;/P&gt;
&lt;P&gt;2 data one;&lt;BR /&gt;3 set session1.hmda_subset_rev19;&lt;BR /&gt;ERROR: File SESSION1.HMDA_SUBSET_REV19.DATA does not exist.&lt;/P&gt;
&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.ONE may be incomplete. When this step was stopped there were 0 observations and 0 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4 proc conents;&lt;BR /&gt;ERROR: Procedure CONENTS not found.&lt;BR /&gt;5 run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know what is going wrong. Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 04:58:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552668#M153632</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-04-21T04:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552690#M153643</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: File SESSION1.HMDA_SUBSET_REV19.DATA does not exist.&lt;/FONT&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;When SAS says a file does not exist, and the user says the file does exist, I believe SAS.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;So, please show us a screen capture of this file in your operating system, so we can see it exists with that exact name, and so we can see that it is in folder "C:\x".&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 11:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552690#M153643</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-21T11:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552706#M153659</link>
      <description>I can assure you it’s in right folder. I’ve used sas plenty of times and I checked it plenty of times so I at least know how to put it in the right folder which isn’t a difficult thing to accomplish. I don’t know how to send a screen shot.&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552706#M153659</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-04-21T18:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552707#M153660</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try following code on your location and file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname session1 "C:\x";

data _null_;

IF exist("session1.hmda_subset_rev19") 
  then putlog "I exist.";
  else putlog "I DON'T exits";

run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;all the best&lt;/P&gt;&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:29:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552707#M153660</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2019-04-21T18:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552708#M153661</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257791"&gt;@khalillx&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I can assure you it’s in right folder. &lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Well, then, quite simply, I believe SAS.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;I don’t know how to send a screen shot.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Take the screen capture, and then send it by clicking on the Photo icon when you are typing your reply here at SAS communities.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552708#M153661</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-21T18:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552711#M153663</link>
      <description>&lt;P&gt;Hi, I did that and SAS says it exists. What do I do not? Run the code again that I have in my question?&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:45:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552711#M153663</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-04-21T18:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552717#M153665</link>
      <description>&lt;P&gt;Have you been using any macro quoting functions like %bquote(), %str(), or %superq() earlier in the code? e.g to create macrovariable with dataset name?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data one;
set %UNQUOTE(session1.hmda_subset_rev19);
proc contents;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;second thought, are the dataset name in the code and in the folder in the same case? i.e. both lower case letters?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:54:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552717#M153665</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2019-04-21T18:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552718#M153666</link>
      <description>&lt;P&gt;So now, we have a conflict, on the one hand SAS is saying that the file does not exist, but on the other hand, SAS is saying that the file does exist.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you show us a screen capture of the contents of library SESSION1? (Usually, SAS will show you the contents of libraries on the left hand side of the SAS workspace, but the specifics depend on what interface you are using)&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:55:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552718#M153666</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-21T18:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552720#M153668</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 589px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28854i06F40A95407FB2B5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:56:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552720#M153668</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-04-21T18:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552721#M153669</link>
      <description>&lt;P&gt;One more thing,&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there by any chance any space at the end of the dataset name?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bart&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552721#M153669</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2019-04-21T18:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552722#M153670</link>
      <description>libname session1 "C:\econ385";&lt;BR /&gt;&lt;BR /&gt;data one;&lt;BR /&gt;set session1.hmda_subset_rev19;&lt;BR /&gt;proc conents;&lt;BR /&gt;run;</description>
      <pubDate>Sun, 21 Apr 2019 18:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552722#M153670</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-04-21T18:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552723#M153671</link>
      <description>&lt;P&gt;hmmm looks like folder is "C:\econ385" not "C:\x"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 18:58:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552723#M153671</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2019-04-21T18:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552724#M153672</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257791"&gt;@khalillx&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;libname session1 "C:\econ385";&lt;BR /&gt;&lt;BR /&gt;data one;&lt;BR /&gt;set session1.hmda_subset_rev19;&lt;BR /&gt;proc conents;&lt;BR /&gt;run;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Show us a screen capture of the SAS contents of that library. It's on the left hand side of whatever SAS interface you are using.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And put a RUN; statement to end your SAS data step, before starting the next PROC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And spell CONTENTS properly.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 19:00:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552724#M153672</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-21T19:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552725#M153673</link>
      <description>Yes I hid my pathway at first.&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Apr 2019 19:01:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552725#M153673</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-04-21T19:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to read in a permanent SAS data set but SAS is saying file does not exist but it does</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552726#M153674</link>
      <description>&lt;P&gt;Also, please show us the entire SAS log when you run this code, not just the error message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To help us out, and preserve the appearance and formatting and spacing in the log, you need to copy the log as text (not a screen capture) and then click on the {i} icon when you reply here at SAS communities, and paste the log into the window that appears. Do not skip the step where you click on the {i} icon.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 19:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-m-trying-to-read-in-a-permanent-SAS-data-set-but-SAS-is-saying/m-p/552726#M153674</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-21T19:16:12Z</dc:date>
    </item>
  </channel>
</rss>

