<?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 Importing Excel files in syntax without SAS/ACCESS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492763#M72239</link>
    <description>&lt;P&gt;I'm trying to import my Excel files into SAS without SAS/ACCESS. Is this possible other than the&amp;nbsp;SAS Enterprise Guide import wizard? I'm a newbie but I've checked around in here and on other sites with no luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using base SAS 9.4 with SAS/STAT on a Windows 10 64-bit machine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the import wizard, I'm not seeing a way to use the syntax generated directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From &lt;A href="https://libguides.library.kent.edu/SAS/ImportData#s-lg-box-wrapper-18345498" target="_blank"&gt;https://libguides.library.kent.edu/SAS/ImportData#s-lg-box-wrapper-18345498&lt;/A&gt;:&lt;BR /&gt;This uses PCFILES, which seems to be part of SAS/ACCESS. I get the error, "ERROR: The PCFILES engine cannot be found."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From &lt;A href="https://stats.idre.ucla.edu/sas/faq/how-do-i-readwrite-excel-files-in-sas/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/faq/how-do-i-readwrite-excel-files-in-sas/&lt;/A&gt;:&lt;BR /&gt;This uses PROC IMPORT with DBMS=XLSX (I've used DBMS=EXCEL, too). I get the error, "ERROR: DBMS type XLSX not valid for import."&lt;/P&gt;</description>
    <pubDate>Wed, 05 Sep 2018 19:02:38 GMT</pubDate>
    <dc:creator>matt_beyers</dc:creator>
    <dc:date>2018-09-05T19:02:38Z</dc:date>
    <item>
      <title>Importing Excel files in syntax without SAS/ACCESS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492763#M72239</link>
      <description>&lt;P&gt;I'm trying to import my Excel files into SAS without SAS/ACCESS. Is this possible other than the&amp;nbsp;SAS Enterprise Guide import wizard? I'm a newbie but I've checked around in here and on other sites with no luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using base SAS 9.4 with SAS/STAT on a Windows 10 64-bit machine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the import wizard, I'm not seeing a way to use the syntax generated directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From &lt;A href="https://libguides.library.kent.edu/SAS/ImportData#s-lg-box-wrapper-18345498" target="_blank"&gt;https://libguides.library.kent.edu/SAS/ImportData#s-lg-box-wrapper-18345498&lt;/A&gt;:&lt;BR /&gt;This uses PCFILES, which seems to be part of SAS/ACCESS. I get the error, "ERROR: The PCFILES engine cannot be found."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From &lt;A href="https://stats.idre.ucla.edu/sas/faq/how-do-i-readwrite-excel-files-in-sas/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/faq/how-do-i-readwrite-excel-files-in-sas/&lt;/A&gt;:&lt;BR /&gt;This uses PROC IMPORT with DBMS=XLSX (I've used DBMS=EXCEL, too). I get the error, "ERROR: DBMS type XLSX not valid for import."&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 19:02:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492763#M72239</guid>
      <dc:creator>matt_beyers</dc:creator>
      <dc:date>2018-09-05T19:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Excel files in syntax without SAS/ACCESS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492771#M72240</link>
      <description>&lt;P&gt;Convert your excel file into raw data file (csv, txt, ect..) and then import using the Data Step infile.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 19:26:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492771#M72240</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-05T19:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Excel files in syntax without SAS/ACCESS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492798#M72241</link>
      <description>&lt;P&gt;You can also set up an ODBC connection to a file and connect to it that way, after it's set up as a DSN connection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is a major annoyance if you have to do it for a lot of different files though, since it's a manual process.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You likely don't have access to your system to convert the XLSX files to CSV automatically, do you? If so, there's a VBS script floating around that will convert them and allow you to streamline this process a bit more. It's not possible to work both locally and on the server though so that's a different issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/230944"&gt;@matt_beyers&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'm trying to import my Excel files into SAS without SAS/ACCESS. Is this possible other than the&amp;nbsp;SAS Enterprise Guide import wizard? I'm a newbie but I've checked around in here and on other sites with no luck.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using base SAS 9.4 with SAS/STAT on a Windows 10 64-bit machine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the import wizard, I'm not seeing a way to use the syntax generated directly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From &lt;A href="https://libguides.library.kent.edu/SAS/ImportData#s-lg-box-wrapper-18345498" target="_blank"&gt;https://libguides.library.kent.edu/SAS/ImportData#s-lg-box-wrapper-18345498&lt;/A&gt;:&lt;BR /&gt;This uses PCFILES, which seems to be part of SAS/ACCESS. I get the error, "ERROR: The PCFILES engine cannot be found."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From &lt;A href="https://stats.idre.ucla.edu/sas/faq/how-do-i-readwrite-excel-files-in-sas/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/faq/how-do-i-readwrite-excel-files-in-sas/&lt;/A&gt;:&lt;BR /&gt;This uses PROC IMPORT with DBMS=XLSX (I've used DBMS=EXCEL, too). I get the error, "ERROR: DBMS type XLSX not valid for import."&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&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>Wed, 05 Sep 2018 20:09:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/492798#M72241</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-05T20:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Excel files in syntax without SAS/ACCESS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/493669#M72298</link>
      <description>&lt;P&gt;I forgot to say, I have dozens of sheets in the Excel file and I didn't want to export to CSV or other. Based on these two replies, however, it seems I must do so and can't get around that without using SAS/ACCESS. I can write a VBA script to export them all to the same directory and then call them by referencing every CSV file in that directory in a list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do like the idea of creating an ODBC connection but want to make this easy on the users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 21:53:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/493669#M72298</guid>
      <dc:creator>matt_beyers</dc:creator>
      <dc:date>2018-09-07T21:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Importing Excel files in syntax without SAS/ACCESS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/493671#M72299</link>
      <description>&lt;P&gt;Honestly, I don't think they should sell SAS without SAS/ACCESS. Its a huge limitation and I don't know why they do that &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 21:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Importing-Excel-files-in-syntax-without-SAS-ACCESS/m-p/493671#M72299</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-07T21:52:41Z</dc:date>
    </item>
  </channel>
</rss>

