<?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: Reading mutiple .txt reports in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203487#M50761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if the wildcard method would work in this case but worth a try, if not you can always try the macro method outlined at the beginning:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="10426" __jive_macro_name="document" class="jive_macro jive_macro_document" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Mar 2015 16:59:11 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2015-03-17T16:59:11Z</dc:date>
    <item>
      <title>Reading mutiple .txt reports</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203486#M50760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have reports that are saved in .txt format.&amp;nbsp; They are not raw data files with variable names.&amp;nbsp; There are a few things I want to accomplish:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Extract pieces of information from these files based on where they are located.&amp;nbsp; All the files have the same structure so the pieces of information I want to extract are located in the same place.&lt;/P&gt;&lt;P&gt;2. There is nothing in the report that designates the Facility Name.&amp;nbsp; The name of the .txt file is the facility name. I want to use the name of the file as the value of a new variable, Site.&lt;/P&gt;&lt;P&gt;3. I want to run a code that I have created on all .txt files located in a folder directory.&lt;/P&gt;&lt;P&gt;4. The end sas dataset should be 1 file with X number of observations (# of files in the directory).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this code that works fine for number 1 on my list.&amp;nbsp; However, there are potentially dozens and dozens of such files that I would need to run this code on individually, which would take a long time and won't be very efficient.&amp;nbsp; How do I run this code on all .txt files in a directory at once and accomplish 2-4 on my list?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have found pieces of code that shows me how to read in all .txt files in a directory but I don't know how to combine all the pieces into one coherent working code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated and be a big time saver for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code creates variables, PATIENTS and Antigen1-Antigen6 which is what I am extracting.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data work.test2;&lt;/P&gt;&lt;P&gt;infile 'C:\Users\71879\temp\TEST.txt' truncover;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input //////////&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; line1 $100. /&lt;/P&gt;&lt;P&gt;line2 $100. /&lt;/P&gt;&lt;P&gt;line3 $100. /&lt;/P&gt;&lt;P&gt;line4 $100. /&lt;/P&gt;&lt;P&gt;line5 $100. /&lt;/P&gt;&lt;P&gt;line6 $100. /&lt;/P&gt;&lt;P&gt;line7 $100. /&lt;/P&gt;&lt;P&gt;line8 $100. /&lt;/P&gt;&lt;P&gt;line9 $100. /&lt;/P&gt;&lt;P&gt;line10 $100. /&lt;/P&gt;&lt;P&gt;line11 $100. /&lt;/P&gt;&lt;P&gt;line12 $100. /&lt;/P&gt;&lt;P&gt;line13 $100. /&lt;/P&gt;&lt;P&gt;line14 $100. /&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PTfind=index(line1,'Assessed');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line1a=substr(line1,1,PTfind-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line1b=substr(line1,PTfind);&lt;/P&gt;&lt;P&gt;&amp;nbsp; name=substr(line1a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; PATIENTS=scan(scan(line1b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANT1find=index(line9,'Var2 ');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line9a=substr(line9,1,ANT1find-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line9b=substr(line9,ANT1find);&lt;/P&gt;&lt;P&gt;&amp;nbsp; name1=substr(line9a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Antigen1=scan(scan(line9b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANT2find=index(line10,'HepB3');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line10a=substr(line10,1,ANT2find-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line10b=substr(line10,ANT2find);&lt;/P&gt;&lt;P&gt;&amp;nbsp; name2=substr(line10a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Antigen2=scan(scan(line10b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANT3find=index(line11,'Meng1');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line11a=substr(line11,1,ANT3find-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line11b=substr(line11,ANT3find);&lt;/P&gt;&lt;P&gt;&amp;nbsp; name3=substr(line11a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Antigen3=scan(scan(line11b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANT4find=index(line12,'MMR2');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line12a=substr(line12,1,ANT4find-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line12b=substr(line12,ANT4find);&lt;/P&gt;&lt;P&gt;&amp;nbsp; name4=substr(line12a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Antigen4=scan(scan(line12b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANT5find=index(line13,'Var2');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line13a=substr(line13,1,ANT5find-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line13b=substr(line13,ANT5find);&lt;/P&gt;&lt;P&gt;&amp;nbsp; name5=substr(line13a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Antigen5=scan(scan(line13b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANT6find=index(line14,'Tdap1');&lt;/P&gt;&lt;P&gt;&amp;nbsp; line14a=substr(line14,1,ANT6find-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; line14b=substr(line14,ANT6find);&lt;/P&gt;&lt;P&gt;&amp;nbsp; nam6e=substr(line14a,8);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Antigen6=scan(scan(line14b,2,','),1,' ');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 15:32:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203486#M50760</guid>
      <dc:creator>eramirez</dc:creator>
      <dc:date>2015-03-17T15:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reading mutiple .txt reports</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203487#M50761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if the wildcard method would work in this case but worth a try, if not you can always try the macro method outlined at the beginning:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="10426" __jive_macro_name="document" class="jive_macro jive_macro_document" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 16:59:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203487#M50761</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-17T16:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Reading mutiple .txt reports</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203488#M50762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use wildcards on the INFILE statement.&lt;/P&gt;&lt;P&gt;You will also want to use the FILENAME and EOV options on the INFILE statement.&lt;/P&gt;&lt;P&gt;Here is a simple example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;_null_&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; file=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'one.txt'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'two.txt'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fname=catx(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'\'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;,pathname(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'work'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;),file);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;file&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; out &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;filevar&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;=fname ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; i=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;to&lt;/SPAN&gt; &lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;10&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;put&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; i; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; want ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; fname file $&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;200&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;infile&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;"%sysfunc(pathname(work))\*.txt"&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;eov&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;=eov &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;filename&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;=fname;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; @;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; _n_=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; or eov &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;then&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; // i ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; file = scan(fname,-&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'\'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; eov=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 17:52:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Reading-mutiple-txt-reports/m-p/203488#M50762</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-03-17T17:52:57Z</dc:date>
    </item>
  </channel>
</rss>

