<?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: Requesting ideas/help to read multiple excel files from a folder in server efficiently? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570698#M160953</link>
    <description>&lt;P&gt;Since DATAROW doesn't really work right unless you want GETNAMES=NO not sure it matters that much.&lt;/P&gt;
&lt;P&gt;On this page:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n0msy4hy1so0ren1acm90iijxn8j.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n0msy4hy1so0ren1acm90iijxn8j.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It mentions DATAROW under the section on RANGE.&amp;nbsp; It also does not seem to properly describe the limitation on the RANGE option that it MUST include a sheetname if you are not using a named range.&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jul 2019 18:36:54 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-07-02T18:36:54Z</dc:date>
    <item>
      <title>Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570534#M160893</link>
      <description>&lt;P&gt;Requesting ideas/help to read &lt;STRONG&gt;multiple excel files xlsx&lt;/STRONG&gt; from a folder in server efficiently?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Folder is in server&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Number of cols: 130&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Row 1 has&amp;nbsp; some junk and has to be ignored&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Variable names begin from Row 2&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Values begin from Row 3&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Also some columns &lt;U&gt;do not&lt;/U&gt; have variable names and is blank&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any simple convenient yet efficient&amp;nbsp;way to handle this?An example will help. Thank you in advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS My mind isn't thinking well. Sorry for the bother&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 13:00:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570534#M160893</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-02T13:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570612#M160927</link>
      <description>&lt;P&gt;1. Do all the files have similar structure?&lt;/P&gt;
&lt;P&gt;2. What type of server, Windows, Unix? If you're on Unix, you likely need to use PCFILES.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. What happens if you write a libname reference to the file and use PROC COPY?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. If they are similar structure have you tried using a basic PROC IMPORT with DBMS = XLSX and specifying the RANGE from A2:END? There's a way to specify a dynamic range so if this works, I can look up how to do that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Documentation reference for Excel files:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n0msy4hy1so0ren1acm90iijxn8j.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n0msy4hy1so0ren1acm90iijxn8j.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;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myFile XLSX "path to xlsx file";

*you need to ensure pcfiles is set up and running;
libname myTest PCFILES Path = "path to xlsx file" server= port=;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 15:45:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570612#M160927</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-02T15:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570619#M160929</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;The XLSX LIBNAME engine and the XLSX PROC IMPORT engine work on Unix, so the SAS PC Files Server might not be needed.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 15:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570619#M160929</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2019-07-02T15:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570645#M160940</link>
      <description>&lt;P&gt;It's a windows server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This seems to work&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import 
DATAFILE = "\\corp\sites\RIB1001\HLSCreditRisk\RMBS Collateral Data\RAW DATA FOR NAVEEN\12646wah7.xlsx" 
DBMS=XLSX   OUT =test REPLACE;

getnames=no;

datarow=3;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But I do not understand the datarow as the doc says&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;Starts reading data from the specified row number in the &lt;STRONG&gt;delimited text file. So what's the delimiter here?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 16:53:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570645#M160940</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-02T16:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570649#M160942</link>
      <description>DATAROW should only work with delimited text files, not an XLSX files as far as I know. The SAS documentation is starting to drive me nuts lately....seems like it's constantly missing things or out of date.</description>
      <pubDate>Tue, 02 Jul 2019 17:02:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570649#M160942</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-02T17:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570654#M160944</link>
      <description>&lt;P&gt;+1 to your thoughts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm very unimpressed too as I was embarrassed &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 17:10:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570654#M160944</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-02T17:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570665#M160948</link>
      <description>You shouldn't ever feel embarrassed at not knowing something, especially if its your first time dealing with that situation. If it's the third time you've made that mistake then you should feel a bit embarrassed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 02 Jul 2019 17:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570665#M160948</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-02T17:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570684#M160950</link>
      <description>&lt;P&gt;It is a pain in ***.&lt;/P&gt;
&lt;P&gt;If you just use PROC IMPORT it will use the first row as the names and include the names in the data.&lt;/P&gt;
&lt;P&gt;If you tell it the data starts on line 3 it will not read the names as data, but it still tries to use the title row as the names.&lt;/P&gt;
&lt;P&gt;Instead use the RANGE option to tell it start reading on A2.&amp;nbsp; But then you NEED to know the sheetname.&lt;/P&gt;
&lt;P&gt;Example file:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 324px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30706i83D1D53EB73A51B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Example Code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let filename="c:\downloads\testa.xlsx";

proc import datafile=&amp;amp;filename dbms=xlsx
  out=test1 replace
;
run;

proc print; title1 'TEST1';
run;

proc import datafile=&amp;amp;filename dbms=xlsx
  out=test2 replace
;
datarow=3;
run;

proc print; title1 'TEST2';
run;

proc import datafile=&amp;amp;filename dbms=xlsx
  out=test3 replace
;
range="Sheet1$A2:0";
run;

proc print; title1 'TEST3';
run;

title1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Example Results:&lt;/P&gt;
&lt;PRE&gt;TEST1

       Title_
Obs     line     B       C

 1       ID      Name    Age
 2       1       Sam     23
 3       2       Fred    33

TEST2

       Title_
Obs     line     B       C

 1       1       Sam     23
 2       2       Fred    33

TEST3

Obs    ID    Name    Age

 1     1     Sam     23
 2     2     Fred    33&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 18:25:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570684#M160950</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-02T18:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570690#M160952</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;where in the documentation does it say that data row applies to XLSX DBMS? In the documentation, it only shows that RANGE and SHEET apply to XLSX DBMS?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's primarily the issue here, I'm guessing that it's under a different section than the link above?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 18:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570690#M160952</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-02T18:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570698#M160953</link>
      <description>&lt;P&gt;Since DATAROW doesn't really work right unless you want GETNAMES=NO not sure it matters that much.&lt;/P&gt;
&lt;P&gt;On this page:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n0msy4hy1so0ren1acm90iijxn8j.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n0msy4hy1so0ren1acm90iijxn8j.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It mentions DATAROW under the section on RANGE.&amp;nbsp; It also does not seem to properly describe the limitation on the RANGE option that it MUST include a sheetname if you are not using a named range.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 18:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570698#M160953</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-02T18:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570710#M160956</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;In the simple case of reading the first worksheet, I don't think that you need to specify the worksheet name in the range.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;import&lt;/SPAN&gt; datafile&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;filename&lt;/SPAN&gt; dbms&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;xlsx
  out&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;test3 &lt;SPAN class="token keyword"&gt;replace&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token function"&gt;  range&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'$A2:0'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&amp;nbsp;quit;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 19:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570710#M160956</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2019-07-02T19:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570717#M160960</link>
      <description>&lt;P&gt;I thought I tried that.&amp;nbsp; But looking at the log I had tried just '$A2'.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interestingly you don't need the trailing zero. So just '$A2:' works.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 19:13:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570717#M160960</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-02T19:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570723#M160961</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Marvelous&lt;/STRONG&gt; Sir&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp; . First off, &lt;STRONG&gt;thank you for your time&lt;/STRONG&gt; and &lt;STRONG&gt;detailing&lt;/STRONG&gt; the example. let me try that solution, and then come back to you should i seek any clarification and of course to mark the answer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 19:19:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/570723#M160961</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-02T19:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571486#M161203</link>
      <description>&lt;P&gt;Sir &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp; ,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13635"&gt;@Vince_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the bother yet again. May I request a favor in helping me with some kind of a tool that would convert all the xlsx files in a folder to CSV. I know this request is perhaps not appropriate in a SAS forum but I am just taking a chance. The reason that led to me to this is I am not quite happy with Proc import making guesses incorrectly for some files and perhaps correctly for others. Could i get lucky plz?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 19:37:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571486#M161203</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-05T19:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571489#M161204</link>
      <description>&lt;P&gt;&lt;A href="https://gist.github.com/statgeek/c51f58a009f8d315a200f34912e494b1" target="_blank"&gt;https://gist.github.com/statgeek/c51f58a009f8d315a200f34912e494b1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This goes from xml to xlsx but it's easy to modify, change the 51 to 6 and the extension in the code from xlsx to csv&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/office/vba/api/excel.xlfileformat" target="_blank"&gt;https://docs.microsoft.com/en-us/office/vba/api/excel.xlfileformat&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think this deals with multiple sheets in each file, is that something you need to deal with?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 19:56:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571489#M161204</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-05T19:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571490#M161205</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;I don't think this deals with multiple sheets in each file, is that something you need to deal with?"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thankfully No &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; Just one sheet in an xlsx file. The number of xlsx file in a folder is 132 dowlnoaded from Bloomberg&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 20:01:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571490#M161205</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-05T20:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571492#M161206</link>
      <description>Do you have access to Bloomberg API? If so, you may be able to transition to using the API at some point instead if that's an option. Worth running by your supervisor at some point if its an option or possibility. Allows you streamline a process so you're avoiding the download step entirely.</description>
      <pubDate>Fri, 05 Jul 2019 20:07:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571492#M161206</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-05T20:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571494#M161207</link>
      <description>Also, this is a VBS script but you may not have x command, if that happens, just go to the folder and double click the vbs file created and it will run.</description>
      <pubDate>Fri, 05 Jul 2019 20:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571494#M161207</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-05T20:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Requesting ideas/help to read multiple excel files from a folder in server efficiently?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571570#M161238</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp; for the timely help. That was something special &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jul 2019 12:39:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Requesting-ideas-help-to-read-multiple-excel-files-from-a-folder/m-p/571570#M161238</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-06T12:39:10Z</dc:date>
    </item>
  </channel>
</rss>

