<?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: Macro to import text files in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656600#M196914</link>
    <description>Ah interesting, I have no idea how Unix and windows interact. So the files would have to be a share drive that within Unix? Also then how does the import wizard pull in this file no problem?&lt;BR /&gt;&lt;BR /&gt;Thanks again!</description>
    <pubDate>Wed, 10 Jun 2020 22:18:07 GMT</pubDate>
    <dc:creator>mhoward2</dc:creator>
    <dc:date>2020-06-10T22:18:07Z</dc:date>
    <item>
      <title>Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656589#M196904</link>
      <description>&lt;P&gt;Hi all, this really should be super basic, just trying to read in files and save them to work tables. Here's my code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;%Macro LoopFiles;
%DO I = 1 %TO 12;

DATA WORK.TEST_FILE_&amp;amp;I;
    LENGTH
        F1               $ 16 ;
    FORMAT
        F1               $CHAR16. ;
    INFORMAT
        F1               $CHAR16. ;
    INFILE "//w3r2/data/More Data/Tons of Data/Text Files/Test&amp;amp;I..txt"
        LRECL=16
        ENCODING="LATIN1"
        TERMSTR=CRLF
        DLM='7F'x
        MISSOVER
        DSD ;
    INPUT
        F1               : $CHAR16. ;
RUN;

%END;
%MEND LoopFiles;
%LoopFiles
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I keep getting this error&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;    ERROR: Physical file does not exist, //w2rshr02/data/More Data/Tons of Data/Text Files/Test1.txt.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The file for sure exists and that is the correct path, any thoughts as to what I have to do for it to read in an external file path? Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 21:55:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656589#M196904</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T21:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656591#M196906</link>
      <description>&lt;P&gt;That is a strange path. It looks kind of like a Unix path but since it starts with the root node, but it has two slashes instead of one.&lt;/P&gt;
&lt;P&gt;Note that if it is a Unix path then make sure that the case of all of the letters is correct. Unix filesystems are case sensitive.&lt;/P&gt;
&lt;P&gt;If your SAS session is running on Windows instead and you meant to give it a Windows UNC path (\\servername\sharename\path\....) then change the slashes to backslashes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you sure that the file exists on the machine where SAS is running?&amp;nbsp; Is it accessible by the userid that is running the SAS process?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 22:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656591#M196906</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T22:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656595#M196910</link>
      <description>Thanks for the reply, I am trying to use the windows file path, I had changed the direction of the slashes because when I had the backslashes it gave me this error:&lt;BR /&gt;&lt;BR /&gt;    ERROR: Physical file does not exist, &lt;BR /&gt;        /apps/sas/sasGridHome/config/compute/Lev1/SASApp/\\w2rshr02\data\More Data\Tons of Data\Text Files\Test1.txt.&lt;BR /&gt;&lt;BR /&gt;where it adds that beginning part which I have no idea why it does that? Any and all help would be appreciated! Thanks!</description>
      <pubDate>Wed, 10 Jun 2020 22:08:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656595#M196910</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T22:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656597#M196912</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/279427"&gt;@mhoward2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thanks for the reply, I am trying to use the windows file path, I had changed the direction of the slashes because when I had the backslashes it gave me this error:&lt;BR /&gt;&lt;BR /&gt;ERROR: Physical file does not exist, &lt;BR /&gt;/apps/sas/sasGridHome/config/compute/Lev1/SASApp/\\w2rshr02\data\More Data\Tons of Data\Text Files\Test1.txt.&lt;BR /&gt;&lt;BR /&gt;where it adds that beginning part which I have no idea why it does that? Any and all help would be appreciated! Thanks!&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So that means your SAS session is running on Unix and you are asking it to find a file on some Windows share.&amp;nbsp; Ask your support team to mount that Windows Share on the Unix server and tell you want where they mounted it.&lt;/P&gt;
&lt;P&gt;Otherwise first copy the file to some disk that is already on the Unix machine.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 22:11:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656597#M196912</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T22:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656600#M196914</link>
      <description>Ah interesting, I have no idea how Unix and windows interact. So the files would have to be a share drive that within Unix? Also then how does the import wizard pull in this file no problem?&lt;BR /&gt;&lt;BR /&gt;Thanks again!</description>
      <pubDate>Wed, 10 Jun 2020 22:18:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656600#M196914</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T22:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656602#M196916</link>
      <description>&lt;P&gt;Please not that the error has a different path then that in your code.&lt;/P&gt;
&lt;P&gt;It is best to copy the code from the log along with errors and paste all of that into a code box. That way we see the entire code as actually submitted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is the //w3r2 supposed to indicate a network server on your network? If not that might be the issue as it may be treated that way.&lt;/P&gt;
&lt;P&gt;And if that is intended are you working with a SAS server set up? The server might be using different permissions than yours attempting to access the file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And there may not be a need for a macro at all as you can read multiple text files with a single data step, if that would be preferred instead of reading into 12 data sets.&amp;nbsp; Since I don't see anything on your INFILE like FIRSTOBS where you are skipping header rows this would be fairly easy with a long FILENAME statement.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 22:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656602#M196916</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-10T22:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656604#M196917</link>
      <description>The reason the share drive address dont match up is me messing up which copy and paste it should be, thanks for catching that. The correct address is the error.&lt;BR /&gt;&lt;BR /&gt;How do I read multiple in a single step if I cant even read in one? haha I appreciate any and all advice!</description>
      <pubDate>Wed, 10 Jun 2020 22:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656604#M196917</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T22:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656607#M196920</link>
      <description>&lt;P&gt;When you get the path issue straightened out you might try your Infile to use \test*.txt IF all of the Test files in the folder have the same layout. The wildcard * would get all the files in the folder whose names start with "Test".&lt;/P&gt;
&lt;P&gt;Or for specific files only, such as you want to read 1 to 12 of 100 files a filename similar to this:&lt;/P&gt;
&lt;PRE&gt;Filename toread ("&amp;lt;path&amp;gt;\test1.txt" "&amp;lt;path&amp;gt;\test2.txt" "&amp;lt;path&amp;gt;\test31.txt") &amp;lt;other filename options&amp;gt;;&lt;/PRE&gt;
&lt;P&gt;and use: Infile Toread &amp;lt;remaining Infile options&amp;gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to know which file each record came from then you can investigate the mysteries of saving the value of a Filename=&amp;lt;some variable name&amp;gt; option on the Infile statement. Not hard, routine and tedious, to have the file.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 22:39:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656607#M196920</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-10T22:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656610#M196923</link>
      <description>All the files are basically identical in format. Just different values. The filename thing isnt the issue since its the correct file name in the program. SAS still cannot read in the file though, exact same error.</description>
      <pubDate>Wed, 10 Jun 2020 22:48:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656610#M196923</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T22:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656611#M196924</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/279427"&gt;@mhoward2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Ah interesting, I have no idea how Unix and windows interact. So the files would have to be a share drive that within Unix? Also then how does the import wizard pull in this file no problem?&lt;BR /&gt;&lt;BR /&gt;Thanks again!&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The details of how the Import Wizard works depends on what wizard you are talking about.&amp;nbsp; It sounds like you are using some process on your Windows PC to submit your SAS code.&amp;nbsp; Either the Windows application Enterprise Guide from SAS or a browser that is connected to a &lt;STRIKE&gt;SAS/Share&lt;/STRIKE&gt;&amp;nbsp;SAS/Studio server.&amp;nbsp; So in those two tools the import wizards will let you use the Windows program you can actually interacting directly with to select a file and then it will upload the file (or perhaps a modified version of the file) and submit SAS code to read from the file that it uploaded.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 22:53:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656611#M196924</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T22:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656613#M196926</link>
      <description>Yes I am using Enterprise Guide. So you're saying the import wizard has special magic power that allow it to read in windows files directly, but I can't bring them in by coding?</description>
      <pubDate>Wed, 10 Jun 2020 22:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656613#M196926</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T22:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656616#M196927</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/279427"&gt;@mhoward2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes I am using Enterprise Guide. So you're saying the import wizard has special magic power that allow it to read in windows files directly, but I can't bring them in by coding?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No. Enterprise Guide is a totally separate program from SAS itself.&amp;nbsp; It is a Windows application so it can read and write to the files that your PC can access.&amp;nbsp; When you want it to run SAS code it connects to a SAS server and submits the SAS code to there to run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want your SAS session to access the files on your PC then connect to a SAS server running on your PC.&amp;nbsp; You will need to have SAS for Windows installed on your PC in addition to Enterprise Guide.&amp;nbsp; &amp;nbsp;Or perhaps your company has a SAS server running on Windows instead of Unix that can access the shared folder.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 22:57:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656616#M196927</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T22:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656618#M196929</link>
      <description>&lt;P&gt;If you're using EG, use the Copy Files task to move the files to the server and then import them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's built in to EG now, though if you were running an older version it needs to be installed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The GUI works because it can load the file one a time manually and import it, but the capability to do that at scale is locked down as a design/security feature.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 23:07:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656618#M196929</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-10T23:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656620#M196931</link>
      <description>Haha I swear im not as dumb as im making myself sound, im probably dumber. I know we have a Unix server that I have to connect to when using Enterprise Guide and all but I have no idea what Unix actually is or why I need it. &lt;BR /&gt;&lt;BR /&gt;But, so I can quit bothering you, can you give me a like a sentence or two that I can email to my SAS Admin team in order for them to understand why what im doing wont work and what needs to happen to fix it?</description>
      <pubDate>Wed, 10 Jun 2020 23:10:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656620#M196931</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T23:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656623#M196934</link>
      <description>Hey, thanks for this! I was unaware of it, I just tried it with a single txt file and it worked! How would I do this with a whole folder of text files? Is that even possible with this task?</description>
      <pubDate>Wed, 10 Jun 2020 23:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/656623#M196934</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-10T23:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657058#M196962</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/279427"&gt;@mhoward2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Ah interesting, I have no idea how Unix and windows interact. So the files would have to be a share drive that within Unix? Also then how does the import wizard pull in this file no problem?&lt;BR /&gt;&lt;BR /&gt;Thanks again!&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The import wizard in Enterprise Guide uses your local Windows to read the file, transfers the content via the IOM bridge to the SAS workspace server process's WORK, and sends code to import the file from there. If you want to read the file without the EG interaction (i.e. you want to run the code in batch), the file needs to be accessible from the UNIX filesystem of the server.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 05:32:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657058#M196962</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-11T05:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657145#M196966</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/279427"&gt;@mhoward2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Haha I swear im not as dumb as im making myself sound, im probably dumber. I know we have a Unix server that I have to connect to when using Enterprise Guide and all but I have no idea what Unix actually is or why I need it. &lt;BR /&gt;&lt;BR /&gt;But, so I can quit bothering you, can you give me a like a sentence or two that I can email to my SAS Admin team in order for them to understand why what im doing wont work and what needs to happen to fix it?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ask your SAS server admin(s) to create a mount for&lt;/P&gt;
&lt;PRE&gt;//w2rshr02/data/&lt;/PRE&gt;
&lt;P&gt;on your SAS server, and tell you its location within the UNIX filesystem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For clarification: in your first attempt, you used forward slashes; to UNIX, a path starting with a forward slash starts at the root of the filesystem, and is called&amp;nbsp;&lt;EM&gt;absolute&lt;/EM&gt; (two consecutive slashes are interpreted as one). When you changed to backward slashes, the path became&amp;nbsp;&lt;EM&gt;relative&lt;/EM&gt;, and the current working directory (CWD) of the workspace server process was prepended, resulting in the awkward file path in the ERROR message.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 06:30:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657145#M196966</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-11T06:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657563#M197055</link>
      <description>There is bulk processing, think you use the * as a wildcard. See details in this blog post.&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2020/05/19/copy-files-in-sas-eg/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2020/05/19/copy-files-in-sas-eg/&lt;/A&gt;</description>
      <pubDate>Thu, 11 Jun 2020 15:19:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657563#M197055</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-11T15:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657565#M197057</link>
      <description>Note the limitation though - it's a significant one unfortunately. &lt;BR /&gt;This task does not generate a SAS program that you can reuse in a batch SAS process or SAS stored process.</description>
      <pubDate>Thu, 11 Jun 2020 15:20:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657565#M197057</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-11T15:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to import text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657574#M197063</link>
      <description>Thank you very much! I really appreciate the help!</description>
      <pubDate>Thu, 11 Jun 2020 15:37:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-to-import-text-files/m-p/657574#M197063</guid>
      <dc:creator>mhoward2</dc:creator>
      <dc:date>2020-06-11T15:37:10Z</dc:date>
    </item>
  </channel>
</rss>

