<?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: Importing a comma delimited txt file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449512#M113128</link>
    <description>&lt;P&gt;Go to Servers Files Folders pane.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find your file&lt;/P&gt;
&lt;P&gt;Right click&amp;gt;Properties&lt;/P&gt;
&lt;P&gt;Copy the path&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use that in your infile statement.&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/194785"&gt;@Miah&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to import this data set into SAS University Edition, but I am getting an error that suggests that my file isn't saved in myfolders folder, even though it is saved there under the same name. This is the error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/2017NBADraft2.csv.&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.DRAFT may be incomplete. When this step was stopped there were 0 observations and 10 variables.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.DRAFT was not replaced because this step was stopped.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and this is my code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DATA work.draft;&lt;BR /&gt;INFILE "/folders/myfolders/2017NBADraft2.csv"&lt;BR /&gt;DLM=',' FIRSTOBS=2 DSD MISSOVER;&lt;BR /&gt;INPUT LastName $ FirstName $ Team $ Position $ Birthdate :ANYDTDTE10. Height Wingspan Weight College $ Year $;&lt;BR /&gt;RUN;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/194785"&gt;@Miah&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to import this data set into SAS University Edition, but I am getting an error that suggests that my file isn't saved in myfolders folder, even though it is saved there under the same name. This is the error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/2017NBADraft2.csv.&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.DRAFT may be incomplete. When this step was stopped there were 0 observations and 10 variables.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.DRAFT was not replaced because this step was stopped.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and this is my code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DATA work.draft;&lt;BR /&gt;INFILE "/folders/myfolders/2017NBADraft2.csv"&lt;BR /&gt;DLM=',' FIRSTOBS=2 DSD MISSOVER;&lt;BR /&gt;INPUT LastName $ FirstName $ Team $ Position $ Birthdate :ANYDTDTE10. Height Wingspan Weight College $ Year $;&lt;BR /&gt;RUN;&lt;/PRE&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>Wed, 28 Mar 2018 21:26:07 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-03-28T21:26:07Z</dc:date>
    <item>
      <title>Importing a comma delimited txt file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449504#M113126</link>
      <description>&lt;P&gt;I am trying to import this data set into SAS University Edition, but I am getting an error that suggests that my file isn't saved in myfolders folder, even though it is saved there under the same name. This is the error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/2017NBADraft2.csv.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.DRAFT may be incomplete. When this step was stopped there were 0 observations and 10 variables.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.DRAFT was not replaced because this step was stopped.&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this is my code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DATA work.draft;&lt;BR /&gt;INFILE "/folders/myfolders/2017NBADraft2.csv"&lt;BR /&gt;DLM=',' FIRSTOBS=2 DSD MISSOVER;&lt;BR /&gt;INPUT LastName $ FirstName $ Team $ Position $ Birthdate :ANYDTDTE10. Height Wingspan Weight College $ Year $;&lt;BR /&gt;RUN;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Mar 2018 21:08:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449504#M113126</guid>
      <dc:creator>Miah</dc:creator>
      <dc:date>2018-03-28T21:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a comma delimited txt file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449510#M113127</link>
      <description>&lt;P&gt;Make sure the case is the same in the code and the way the file appears to the file system in the virtual box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also if you didn't change the file extension to .txt from .csv to post the example on the forum then you didn't use the correct file name in the infile statement.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Mar 2018 21:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449510#M113127</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-03-28T21:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a comma delimited txt file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449512#M113128</link>
      <description>&lt;P&gt;Go to Servers Files Folders pane.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find your file&lt;/P&gt;
&lt;P&gt;Right click&amp;gt;Properties&lt;/P&gt;
&lt;P&gt;Copy the path&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use that in your infile statement.&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/194785"&gt;@Miah&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to import this data set into SAS University Edition, but I am getting an error that suggests that my file isn't saved in myfolders folder, even though it is saved there under the same name. This is the error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/2017NBADraft2.csv.&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.DRAFT may be incomplete. When this step was stopped there were 0 observations and 10 variables.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.DRAFT was not replaced because this step was stopped.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and this is my code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DATA work.draft;&lt;BR /&gt;INFILE "/folders/myfolders/2017NBADraft2.csv"&lt;BR /&gt;DLM=',' FIRSTOBS=2 DSD MISSOVER;&lt;BR /&gt;INPUT LastName $ FirstName $ Team $ Position $ Birthdate :ANYDTDTE10. Height Wingspan Weight College $ Year $;&lt;BR /&gt;RUN;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/194785"&gt;@Miah&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to import this data set into SAS University Edition, but I am getting an error that suggests that my file isn't saved in myfolders folder, even though it is saved there under the same name. This is the error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/2017NBADraft2.csv.&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.DRAFT may be incomplete. When this step was stopped there were 0 observations and 10 variables.&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.DRAFT was not replaced because this step was stopped.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and this is my code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DATA work.draft;&lt;BR /&gt;INFILE "/folders/myfolders/2017NBADraft2.csv"&lt;BR /&gt;DLM=',' FIRSTOBS=2 DSD MISSOVER;&lt;BR /&gt;INPUT LastName $ FirstName $ Team $ Position $ Birthdate :ANYDTDTE10. Height Wingspan Weight College $ Year $;&lt;BR /&gt;RUN;&lt;/PRE&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>Wed, 28 Mar 2018 21:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-comma-delimited-txt-file/m-p/449512#M113128</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-28T21:26:07Z</dc:date>
    </item>
  </channel>
</rss>

