<?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: why I can't input txt data set in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642914#M78400</link>
    <description>&lt;P&gt;Please post your code and log.&lt;/P&gt;
&lt;P&gt;From what I see, you have a tab-delimited file and should use '09'x as delimiter.&lt;/P&gt;
&lt;P&gt;For tested code, copy/paste a few lines of the input file into a window opened with &amp;lt;/&amp;gt;.&lt;/P&gt;</description>
    <pubDate>Sat, 25 Apr 2020 17:21:53 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-04-25T17:21:53Z</dc:date>
    <item>
      <title>why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642909#M78398</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="A.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38702i40B210A5971E32CB/image-size/large?v=v2&amp;amp;px=999" role="button" title="A.png" alt="A.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="B.png" style="width: 814px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38703i2EA773FD361EE205/image-size/large?v=v2&amp;amp;px=999" role="button" title="B.png" alt="B.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 17:08:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642909#M78398</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T17:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642912#M78399</link>
      <description>&lt;P&gt;Your photographs as nice.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is your question?&lt;/P&gt;
&lt;P&gt;Did you run some code to make that dataset?&amp;nbsp; What code?&lt;/P&gt;
&lt;P&gt;Show the lines from the SAS log, as text not photographs.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 17:12:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642912#M78399</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-25T17:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642914#M78400</link>
      <description>&lt;P&gt;Please post your code and log.&lt;/P&gt;
&lt;P&gt;From what I see, you have a tab-delimited file and should use '09'x as delimiter.&lt;/P&gt;
&lt;P&gt;For tested code, copy/paste a few lines of the input file into a window opened with &amp;lt;/&amp;gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 17:21:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642914#M78400</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-04-25T17:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642936#M78401</link>
      <description>I want to transfer text data set to SAS data set , but the result, as you see,  is empty .&lt;BR /&gt;The following is my code:&lt;BR /&gt;data recovery;&lt;BR /&gt;infile  "my text data set physical address";&lt;BR /&gt;input  ID dosage age duration  score1-score4;&lt;BR /&gt;run;&lt;BR /&gt;proc print data = recovery;&lt;BR /&gt;run;</description>
      <pubDate>Sat, 25 Apr 2020 20:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642936#M78401</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T20:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642938#M78402</link>
      <description>&lt;PRE&gt;data recovery;
infile "C:\Users\liao\Documents\My SAS Files\9.4\bio\project\recovery.txt";
input  ID $ dosage  age duration   score1-score4  dlm = '09'x;
run;
proc print data = recovery ;
run;&lt;/PRE&gt;</description>
      <pubDate>Sat, 25 Apr 2020 20:26:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642938#M78402</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T20:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642940#M78403</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="C.png" style="width: 723px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38707iAEFDC5DE66E97717/image-size/large?v=v2&amp;amp;px=999" role="button" title="C.png" alt="C.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 20:31:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642940#M78403</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T20:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642942#M78404</link>
      <description>The picture above is output.</description>
      <pubDate>Sat, 25 Apr 2020 20:32:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642942#M78404</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T20:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642947#M78407</link>
      <description>Hi:&lt;BR /&gt;  Just a few comments. the DLM= option goes on the INFILE statement, not the INPUT statement. My guess is that you are getting error messages in the SAS log. &lt;BR /&gt;&lt;BR /&gt;  Also, if your data is as shown in your screen shot, with a header row of column names, then you might also want the FIRSTOBS= option in the INFILE statement too. That way, SAS will start reading your data at row 2. You'll find both DLM= and FIRSTOBS= here &lt;A href="https://go.documentation.sas.com/?docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt; in the documentation.&lt;BR /&gt;Cynthia</description>
      <pubDate>Sat, 25 Apr 2020 21:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642947#M78407</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-04-25T21:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642951#M78408</link>
      <description>&lt;P&gt;Post your LOG. That will indicate if the issue is your code or the file or something else.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 21:28:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642951#M78408</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-25T21:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642955#M78409</link>
      <description>get it ,it works well. Thank you.</description>
      <pubDate>Sat, 25 Apr 2020 21:41:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642955#M78409</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T21:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: why I can't input txt data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642962#M78411</link>
      <description>Thank you for your reply</description>
      <pubDate>Sat, 25 Apr 2020 23:00:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/why-I-can-t-input-txt-data-set/m-p/642962#M78411</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-25T23:00:20Z</dc:date>
    </item>
  </channel>
</rss>

