<?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: How to import unique SAS files from a directory? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597844#M16205</link>
    <description>&lt;P&gt;One simple way to do this would be to move already-imported spreadsheets manually to an archive folder. Trying to do this automatically is a lot harder because then you have the problem of import failures and having to repeat imports.&lt;/P&gt;</description>
    <pubDate>Fri, 18 Oct 2019 22:24:59 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2019-10-18T22:24:59Z</dc:date>
    <item>
      <title>How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597812#M16196</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I followed this code here, with slight modification to switch from csv to xlsx:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=mcrolref&amp;amp;docsetTarget=n0ctmldxf23ixtn1kqsoh5bsgmg8.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=mcrolref&amp;amp;docsetTarget=n0ctmldxf23ixtn1kqsoh5bsgmg8.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which allowed me&amp;nbsp;to import all the files in my directory into SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I would like to do now is to only import unique xlsx files moving forward, how would I go about doing this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 18:55:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597812#M16196</guid>
      <dc:creator>Devindra</dc:creator>
      <dc:date>2019-10-18T18:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597815#M16197</link>
      <description>&lt;P&gt;create either a table, an array or something that can be IDed for the lookup and loop through your importing process.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 19:09:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597815#M16197</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-10-18T19:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597820#M16199</link>
      <description>Sorry, how would I go about doing that?</description>
      <pubDate>Fri, 18 Oct 2019 20:04:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597820#M16199</guid>
      <dc:creator>Devindra</dc:creator>
      <dc:date>2019-10-18T20:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597824#M16200</link>
      <description>&lt;P&gt;What do you mean UNIQUE.&amp;nbsp; How can you have two different XLSX files with the same name?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 20:37:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597824#M16200</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-18T20:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597827#M16201</link>
      <description>&lt;P&gt;To import new files, and not files that have already been imported. One table would consist a list of files that were already imported. then a new table would populate a list of files currently in my directory, and then it would compare the two tables, and then import the files the new files that appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 20:47:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597827#M16201</guid>
      <dc:creator>Devindra</dc:creator>
      <dc:date>2019-10-18T20:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597844#M16205</link>
      <description>&lt;P&gt;One simple way to do this would be to move already-imported spreadsheets manually to an archive folder. Trying to do this automatically is a lot harder because then you have the problem of import failures and having to repeat imports.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 22:24:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597844#M16205</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-10-18T22:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to import unique SAS files from a directory?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597845#M16206</link>
      <description>&lt;P&gt;this simple question (road block) &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/295846"&gt;@Devindra&lt;/a&gt;&amp;nbsp; is what we all have to deal with.&amp;nbsp; It is part of the requirements and development process that takes somewhere around 90-95% of our time before we start coding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You did not explain what you fully needed with all of the details about the time series nor the comparing of data results over time.&lt;/P&gt;
&lt;P&gt;please be as specific as possible in your needs, so that those replying have the details they need to understand the problem you are facing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 22:43:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-import-unique-SAS-files-from-a-directory/m-p/597845#M16206</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-10-18T22:43:44Z</dc:date>
    </item>
  </channel>
</rss>

