<?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: It keeps coming up with warnings and issues... Help! Importing txt file? in Advanced Programming</title>
    <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/826520#M193</link>
    <description>&lt;P&gt;This does not appear to be a syntax error but rather the input text file fungal.txt does not exist or is misspelled. It also looks like using EXPANDTABS is used to indicate the text file is a tab delimited file.&lt;/P&gt;</description>
    <pubDate>Mon, 01 Aug 2022 20:42:55 GMT</pubDate>
    <dc:creator>SuCheeTay</dc:creator>
    <dc:date>2022-08-01T20:42:55Z</dc:date>
    <item>
      <title>It keeps coming up with warnings and issues... Help! Importing txt file?</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/822683#M180</link>
      <description>&lt;PRE&gt;libname perm 'C:\Users\Eden\OneDrive\Documents';
data perm.fungal;
infile 'C:\Users\Eden\OneDrive\Documents\fungal.txt' firstobs=2
expandtabs;
input patno treat $ age sex $ severity clears
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: The data set PERM.FUNGAL may be incomplete. When this step was stopped there were 0&lt;BR /&gt;observations and 7 variables.&lt;BR /&gt;WARNING: Data set PERM.FUNGAL was not replaced because this step was stopped.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 21:16:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/822683#M180</guid>
      <dc:creator>scottyniven</dc:creator>
      <dc:date>2022-07-11T21:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: It keeps coming up with warnings and issues... Help! Importing txt file?</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/822686#M181</link>
      <description>&lt;P&gt;Show us the &lt;FONT color="#FF0000"&gt;ENTIRE&lt;/FONT&gt; log from this DATA step. Please copy the log as text and paste it into the window that appears when you click on the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Insert Log Icon in SAS Communities.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66171iFEC370B1DBF07B28/image-size/large?v=v2&amp;amp;px=999" role="button" title="Insert Log Icon in SAS Communities.png" alt="Insert Log Icon in SAS Communities.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 21:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/822686#M181</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-07-11T21:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: It keeps coming up with warnings and issues... Help! Importing txt file?</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/822689#M182</link>
      <description>&lt;P&gt;It looks like you are missing a semicolon on the INPUT statement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 21:37:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/822689#M182</guid>
      <dc:creator>TheresaStemler</dc:creator>
      <dc:date>2022-07-11T21:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: It keeps coming up with warnings and issues... Help! Importing txt file?</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/823317#M183</link>
      <description>&lt;PRE&gt;1    libname perm 'C:\Users\Eden\OneDrive\Documents';
NOTE: Libref PERM was successfully assigned as follows:
      Engine:        V9
      Physical Name: C:\Users\Eden\OneDrive\Documents
2    data perm.fungal;
3    infile 'C:\Users\Eden\OneDrive\Documents\fungal.txt' firstobs=2
4    expandtabs;
5    input patno treat $ age sex $ severity clears;
6    run;

ERROR: Physical file does not exist, C:\Users\Eden\OneDrive\Documents\fungal.txt.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set PERM.FUNGAL may be incomplete.  When this step was stopped there were 0
         observations and 6 variables.
WARNING: Data set PERM.FUNGAL was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.07 seconds
      cpu time            0.03 seconds&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jul 2022 14:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/823317#M183</guid>
      <dc:creator>scottyniven</dc:creator>
      <dc:date>2022-07-14T14:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: It keeps coming up with warnings and issues... Help! Importing txt file?</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/823322#M184</link>
      <description>&lt;P&gt;That error seems obvious.&amp;nbsp; The file doesn't exist. Make sure the file actually exists.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You seem to be using ONEDRIVE so perhaps that is messing things up somehow?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 14:17:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/823322#M184</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-14T14:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: It keeps coming up with warnings and issues... Help! Importing txt file?</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/826520#M193</link>
      <description>&lt;P&gt;This does not appear to be a syntax error but rather the input text file fungal.txt does not exist or is misspelled. It also looks like using EXPANDTABS is used to indicate the text file is a tab delimited file.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 20:42:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/It-keeps-coming-up-with-warnings-and-issues-Help-Importing-txt/m-p/826520#M193</guid>
      <dc:creator>SuCheeTay</dc:creator>
      <dc:date>2022-08-01T20:42:55Z</dc:date>
    </item>
  </channel>
</rss>

