<?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: Import multiple Excel files(xlsx) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434258#M107761</link>
    <description>&lt;P&gt;SAS is running on server outside.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using sas enterprise guide. The folder C is on a server, but i also tried on desktop H: and it doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am confuse because i can programming with one file xlsx with the same path and works fine for IMPORT data from de excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks your help&lt;/P&gt;</description>
    <pubDate>Mon, 05 Feb 2018 17:05:34 GMT</pubDate>
    <dc:creator>Aleixo</dc:creator>
    <dc:date>2018-02-05T17:05:34Z</dc:date>
    <item>
      <title>Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434234#M107750</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying import multiple files from a folder. I try every code in others topics and never made it. All files in that folder have the extension xlsx&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For save the name files the basic code it is not working. I don't know why this happen.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename tmp pipe 'dir "C:\Users\Documents\incidentes" /s /b';

data test;
	infile tmp dlm="¬";
	length buff $2000;
	input buff $;
	fname=scan(buff, countw(buff, "\"), "\");

	if index(upcase(fname), ".XLSX")&amp;gt;0 then
		call execute(cats('proc import datafile="', buff, '" out=', fname, '; run;'));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: The infile TMP is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Unnamed Pipe Access Device,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS=dir "C:\Users\Documents\incidentes" /s /b,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=32767&lt;/P&gt;
&lt;P&gt;Stderr output:&lt;BR /&gt;File Not Found&lt;BR /&gt;NOTE: 0 records were read from the infile TMP.&lt;BR /&gt;NOTE: The data set WORK.TEST has 0 observations and 2 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.04 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.01 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some has a answer? Any good macro of this?&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 16:27:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434234#M107750</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T16:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434238#M107753</link>
      <description>&lt;P&gt;Split your code and isolate where you're having the issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it creating the TEST data set first with the list of XLSX files correctly? &amp;lt;- In this case fix this first.&lt;/P&gt;
&lt;P&gt;Then add back the CALL EXECUTE.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that you should also specify the DMBS in the export.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before you write a macro or CALL EXECUTE you need to have your base program working first, and then you make the CALL EXECUTE match that format.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the code you need to get working first - what's the delimiter there? I don't think it should be the symbol you have listed...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename tmp pipe 'dir "C:\Users\Documents\incidentes" /s /b';

data test;
	infile tmp dlm="¬";

	length buff $2000;
	input buff $;
	fname=scan(buff, -1 , "\");

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 16:32:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434238#M107753</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T16:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434239#M107754</link>
      <description>&lt;P&gt;PS. Your pipe code works fine for me, are you sure your path is correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 16:34:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434239#M107754</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T16:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434245#M107755</link>
      <description>&lt;P&gt;Now in the new code the result is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The infile TMP is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Unnamed Pipe Access Device,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS=dir "C:\Users\Documents\incidentes" /s /b,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=32767&lt;/P&gt;&lt;P&gt;Stderr output:&lt;BR /&gt;File Not Found&lt;BR /&gt;NOTE: 0 records were read from the infile TMP.&lt;BR /&gt;NOTE: The data set WORK.TEST has 0 observations and 2 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.06 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.06 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sure that the pass is correct. I have a program with&amp;nbsp;an import file(xlsx) from that folder. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your answer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: When i try to delete the path for C:\Users\Documents\&amp;nbsp; the result is other folders and not excel type&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 16:40:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434245#M107755</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T16:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434247#M107756</link>
      <description>&lt;P&gt;So if you copy and paste that path into a Windows pane it goes to the folder?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This macro lists CSV files, but you can try changing it for XLSX and see if it works. Or at least the portion about getting the file names.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=mcrolref&amp;amp;docsetTarget=n0ctmldxf23ixtn1kqsoh5bsgmg8.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://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;</description>
      <pubDate>Mon, 05 Feb 2018 16:43:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434247#M107756</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T16:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434251#M107758</link>
      <description>&lt;P&gt;I know that link. I try it 30 minutos ago. With no results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;c:\Users\Documents\incidentes cannot be open.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 16:47:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434251#M107758</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T16:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434253#M107760</link>
      <description>&lt;P&gt;Is SAS running on a server or your desktop?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Either way it looks like it doesn't have access to that location. There isn't anything wrong with either code. The macro doesn't required XCMD so it's not that, so the only thing that it looks like to me is a path issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you run the DIR command outside of SAS does it work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 16:49:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434253#M107760</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T16:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434258#M107761</link>
      <description>&lt;P&gt;SAS is running on server outside.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using sas enterprise guide. The folder C is on a server, but i also tried on desktop H: and it doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am confuse because i can programming with one file xlsx with the same path and works fine for IMPORT data from de excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks your help&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 17:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434258#M107761</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T17:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434266#M107766</link>
      <description>&lt;P&gt;Can you post the log from that successful PROC IMPORT step?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 17:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434266#M107766</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T17:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434286#M107772</link>
      <description>&lt;P&gt;I am not using code. I am using the functions of enterprise:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;28         DATA WORK.TTag_alterado;
29             LENGTH
30                 Data             $ 23
31                 Descritivo       $ 84 ;
32             FORMAT
33                 Data             $CHAR23.
34                 Descritivo       $CHAR84. ;
35             INFORMAT
36                 Data             $CHAR23.
37                 Descritivo       $CHAR84. ;
38             INFILE 'F:\saswork\*********************&lt;BR /&gt;39                 LRECL=108
40                 ENCODING="WLATIN1"
41                 TERMSTR=CRLF
42                 DLM='7F'x
43                 MISSOVER
44                 DSD ;
45             INPUT
46                 Data             : $CHAR23.
47                 Descritivo       : $CHAR84. ;
48         RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The infile 'F:\saswork\*********************is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Filename='F:\saswork\*****************,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=108,File Size (bytes)=52812,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last Modified=05Feb2018:15:32:56,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create Time=05Feb2018:15:32:56&lt;/P&gt;&lt;P&gt;NOTE: 490 records were read from the infile&amp;nbsp;'F:\saswork\*********&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The minimum record length was 1.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum record length was 108.&lt;BR /&gt;2&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;&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;&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; The SAS System&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14:59 Monday, February 5, 2018&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.TTAG_ALTERADO has 490 observations and 2 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the query of 490 observations&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 17:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434286#M107772</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T17:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434292#M107773</link>
      <description>&lt;P&gt;Ah...that's a different path than you were using previously, F:\ , I assumed it was the same C:\ path.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 17:49:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434292#M107773</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T17:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434300#M107776</link>
      <description>&lt;P&gt;It is not a different path. I don't know why SAS assume that path F:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I change the location Analises_incidentes to incidentes because of the problem '_' under score.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And with this method i can import one Excel file, if you see the figure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 17:59:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434300#M107776</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T17:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434302#M107777</link>
      <description>&lt;P&gt;Did you write that code or did you use a Task to import the data?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What's in the Zip file? Why should I download it? Please just include it in the posts, you can use a spoiler&amp;nbsp;entry if you think it gets too long.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 18:00:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434302#M107777</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T18:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434303#M107778</link>
      <description>&lt;P&gt;Yes i use task. That task is in figure(zip file). SAS community don't accept png or jpeg files.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 18:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434303#M107778</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T18:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434310#M107779</link>
      <description>&lt;P&gt;JPGs are fine, insert them using the Photos option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Import Task is a different method, it can access data locally which you can't do via code. I'm assuming you're using EG or Studio? For this to work you'll need to move your files first to the server and then run the code you were trying to run with a path to the server folder.&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;
&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>Mon, 05 Feb 2018 18:12:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434310#M107779</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T18:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434313#M107780</link>
      <description>&lt;P&gt;I am using EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can i use task to import multiple Excel files? Or it is only by code(macro)?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 18:14:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434313#M107780</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-05T18:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434314#M107781</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/191516"&gt;@Aleixo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am using EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can i use task to import multiple Excel files? Or it is only by code(macro)?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Only via code, not necessarily a macro but not via a task as far as I'm aware. Chris Hemidinger wrote a post on this here or his blog in the last month or so.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 18:16:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434314#M107781</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-05T18:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Import multiple Excel files(xlsx)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434532#M107834</link>
      <description>&lt;P&gt;I change the location of my files. I put them on the server and run successful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time xD&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 14:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-multiple-Excel-files-xlsx/m-p/434532#M107834</guid>
      <dc:creator>Aleixo</dc:creator>
      <dc:date>2018-02-06T14:02:36Z</dc:date>
    </item>
  </channel>
</rss>

