<?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: Problem in reading files. Please help. in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133161#M36167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you need add truncover into infile statement , which is a mistake I used to make .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jun 2012 01:48:18 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2012-06-07T01:48:18Z</dc:date>
    <item>
      <title>Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133158#M36164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;001 Christopher Mullens&amp;nbsp; 11/12/1955 $45,200&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;002 Michelle Kwo&amp;nbsp;&amp;nbsp; 9/12/1955&amp;nbsp; $78,123&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;003 Roger W. McDonald&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/1960 $107,200&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data listMultiple;&lt;/P&gt;&lt;P&gt;infile "d:\sas\list_MultipleBlank.txt";&lt;/P&gt;&lt;P&gt;input id : $3. name &amp;amp; $20. &lt;/P&gt;&lt;P&gt;date1 : mmddyy10. amount : dollar8.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=listMultiple;&lt;/P&gt;&lt;P&gt;format date1 mmddyy10. amount dollar8.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;When I try to read the above data, I got the following errors:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;17 data listMultiple;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;18 infile "d:\sas\list_MultipleBlank.txt";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;19 input id : $3. name &amp;amp; $20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;20 date1 : mmddyy10. amount : dollar8.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;21 run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The infile "d:\sas\list_MultipleBlank.txt" is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File Name=d:\sas\list_MultipleBlank.txt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RECFM=V,LRECL=256&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Invalid data for date1 in line 2 1-3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Invalid data for amount in line 2 5-12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 CHAR 002 Michelle Kwo 9/12/1955 .$78,123 37&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZONE 3332466666662476222323323333202332333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NUMR 0020D9385CC50B7F0009F12F195509478C123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;id=001 name=Christopher Mullens date1=. amount=. _ERROR_=1 _N_=1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Invalid data for date1 in line 3 24-24.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Invalid data for amount in line 3 27-34.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3 CHAR 003 Roger W. McDonald . 1/1/1960 $107,200 43&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZONE 3332566672522464666662202232323333223332333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NUMR 00302F75207E0D34FE1C4009001F1F196004107C200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;id=003 name=Roger W. McDonald date1=. amount=. _ERROR_=1 _N_=2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: 3 records were read from the infile "d:\sas\list_MultipleBlank.txt".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The minimum record length was 37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The maximum record length was 43.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.LISTMULTIPLE has 2 observations and 4 variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;real time 0.17 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cpu time 0.06 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;22 proc print data=listMultiple;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;23 format date1 mmddyy10. amount dollar8.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;24 run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: There were 2 observations read from the data set WORK.LISTMULTIPLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 11:47:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133158#M36164</guid>
      <dc:creator>Aquarian27</dc:creator>
      <dc:date>2012-06-06T11:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133159#M36165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this links...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://communities.sas.com/message/126382#126382"&gt;https://communities.sas.com/message/126382#126382&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="active_link" href="https://communities.sas.com/message/112959#112959"&gt;https://communities.sas.com/message/112959#112959&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 12:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133159#M36165</guid>
      <dc:creator>shivas</dc:creator>
      <dc:date>2012-06-06T12:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133160#M36166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming your data reliably follows the pattern that you expect, here's a two-step approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, add this statement before the INPUT statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;length name $ 20;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then modify the INPUT statement by removing $20. (but keep the &amp;amp;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 13:13:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133160#M36166</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-06-06T13:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133161#M36167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you need add truncover into infile statement , which is a mistake I used to make .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 01:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133161#M36167</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-06-07T01:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133162#M36168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: Consolas;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; listMultiple;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;infile&lt;/SPAN&gt; &lt;SPAN style="font-family: Consolas; background: white; color: purple; font-size: 10pt;"&gt;"d:\sas\list_MultipleBlank.txt"&lt;/SPAN&gt; &lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;truncover&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; name $&lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; background: white; font-family: Consolas;"&gt;20&lt;/STRONG&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; id : &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: teal; font-size: 10pt;"&gt;$3.&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; name &amp;amp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;date1 : &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: teal; font-size: 10pt;"&gt;mmddyy10.&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; amount : &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: teal; font-size: 10pt;"&gt;dollar8.&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: Consolas;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After run the above code, I got the following output :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Christopher Mullens&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Michelle Kwo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 002&amp;nbsp;&amp;nbsp;&amp;nbsp; 09/12/1955&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $78,123&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Roger W. McDonald&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 003&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2012 13:28:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133162#M36168</guid>
      <dc:creator>Aquarian27</dc:creator>
      <dc:date>2012-06-08T13:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133163#M36169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your data lines have characters that you don't expect.&amp;nbsp; I see at least one tab character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you run this and post the log output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; infile &amp;lt;your file&amp;gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; list;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2012 14:50:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133163#M36169</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2012-06-08T14:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in reading files. Please help.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133164#M36170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data_null_ is correct for this sample data. You can add the EXPANDTABS option to the INFILE statement and your input statement will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data listMultiple;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; infile tmpfile1 expandtabs;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; input id : $3. name &amp;amp; $20.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date1 : mmddyy10. amount : dollar8.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; format date1 yymmdd10. amount dollar8.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; put _infile_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; put (_all_) (=);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;002 Michelle Kwo&amp;nbsp;&amp;nbsp; 9/12/1955&amp;nbsp;&amp;nbsp;&amp;nbsp; $78,123&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;id=002 name=Michelle Kwo date1=1955-09-12 amount=$78,123&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;003 Roger W. McDonald&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/1960 $107,200&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;id=003 name=Roger W. McDonald date1=1960-01-01 amount=$107,200&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jun 2012 14:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Problem-in-reading-files-Please-help/m-p/133164#M36170</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-06-09T14:47:41Z</dc:date>
    </item>
  </channel>
</rss>

