<?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 i exporting data from msword to sas in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805725#M33506</link>
    <description>&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;100200 (this is number is there in my pdf file)&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;program;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;data test;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;in file "C:\Users\nares\Desktop\Program 1.txt";&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;input number;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;run;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: Physical file does not exist, /home/u61142151/C:\Users\nares\Desktop\Program 1.txt.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: The data set WORK.TEST may be incomplete. When this step was stopped there were 0 observations and 1 variables.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Data set WORK.TEST was not replaced because this step was stopped.&lt;/DIV&gt;</description>
    <pubDate>Sun, 03 Apr 2022 16:03:18 GMT</pubDate>
    <dc:creator>Naresh888</dc:creator>
    <dc:date>2022-04-03T16:03:18Z</dc:date>
    <item>
      <title>i exporting data from msword to sas</title>
      <link>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805725#M33506</link>
      <description>&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;100200 (this is number is there in my pdf file)&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;program;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;data test;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;in file "C:\Users\nares\Desktop\Program 1.txt";&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;input number;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;run;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: Physical file does not exist, /home/u61142151/C:\Users\nares\Desktop\Program 1.txt.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: The data set WORK.TEST may be incomplete. When this step was stopped there were 0 observations and 1 variables.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Data set WORK.TEST was not replaced because this step was stopped.&lt;/DIV&gt;</description>
      <pubDate>Sun, 03 Apr 2022 16:03:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805725#M33506</guid>
      <dc:creator>Naresh888</dc:creator>
      <dc:date>2022-04-03T16:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: i exporting data from msword to sas</title>
      <link>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805728#M33507</link>
      <description>&lt;P&gt;From your error message SAS is running on a Unix machine so there is no way it will be able to see a file on your Windows machine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Move the file to some place on the Unix machine and then reference the file using that location in your INFILE statement.&amp;nbsp; Since it looks like your home directory is named&amp;nbsp;&lt;SPAN&gt;/home/u61142151/ you could put the file into that directory.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Apr 2022 18:01:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805728#M33507</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-04-03T18:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: i exporting data from msword to sas</title>
      <link>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805765#M33509</link>
      <description>&lt;P&gt;I am sorely confused. Your question subject is "exporting data from msword to SAS". PDF files are not Word files. Txt files are text and have none of the features of Word so I am confused where exactly Word comes into this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suggestion for any future questions: when you get an error or other message in the Log you do not understand, copy the text from the log of the procedure or data step code along with all the notes, warnings and errors. On the the forum open a text box and paste that text. Then we can see everything related. The text box is important to maintain the formatting of any diagnostic characters SAS provides and the message windows will reformat text. It also helps to separate such text from general question/comment/description.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I say this because the code you show would not have executed enough to tell you the file the doesn't exist because the INFILE statement is one word, not "in file" as you show.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 00:41:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/i-exporting-data-from-msword-to-sas/m-p/805765#M33509</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-04-04T00:41:57Z</dc:date>
    </item>
  </channel>
</rss>

