<?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: importing from Excel in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473769#M2258</link>
    <description>&lt;P&gt;There was more or less exactly the same question earlier today:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Base-SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473652#M121569" target="_blank"&gt;https://communities.sas.com/t5/Base-SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473652#M121569&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You just need to use dbms=xlsx.&amp;nbsp; Note in my answer there you need to change to:&lt;/P&gt;
&lt;PRE&gt;libname tmp xlsx 'C:\workspace\test.xlsx';&lt;/PRE&gt;</description>
    <pubDate>Wed, 27 Jun 2018 14:53:15 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-06-27T14:53:15Z</dc:date>
    <item>
      <title>importing from Excel</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473765#M2257</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having difficulties importing an xlsx file...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition to the Import Wizard (which gives "ERROR: Connect: Class not registered&amp;nbsp; ERROR: Error in the LIBNAME statement.), I've tried also the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---&amp;gt;&amp;nbsp; &amp;nbsp;LIBNAME data 'C:\Users\User\Documents\VacCov\VacCovData.xlsx';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Connect: Class not registered&lt;BR /&gt;ERROR: Error in the LIBNAME statement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---&amp;gt;&amp;nbsp; &amp;nbsp;LIBNAME&amp;nbsp;data PCFILES PATH='C:\Users\User\Documents\VacCov\VacCovData.xlsx';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;seems to import all tabs, but when I try to open one it says it doesn't exist or cannot be displayed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---&amp;gt;&amp;nbsp; &amp;nbsp;PROC IMPORT DATAFILE="C:\Users\User\Documents\VacCov\VacCovData.xlsx"&amp;nbsp;&lt;/P&gt;&lt;P&gt;DBMS=EXCELCS&lt;BR /&gt;OUT=WORK.FFF REPLACE;&lt;BR /&gt;SHEET='data';&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Unable to transcode data to/from UCS-2 encoding.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;BR /&gt;&lt;BR /&gt;To solve the errors in the first 2 attempts, I installed the SAS PC Files Server following an older thread on the board, but that didn't really help. (During the deployment, SAS Private Java Runtime Environment (64-bit)&amp;nbsp;failed to install and Install Post Processing was completed with errors... not sure that has something to do with it.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is much appreciated!&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 14:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473765#M2257</guid>
      <dc:creator>vonda12</dc:creator>
      <dc:date>2018-06-27T14:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: importing from Excel</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473769#M2258</link>
      <description>&lt;P&gt;There was more or less exactly the same question earlier today:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Base-SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473652#M121569" target="_blank"&gt;https://communities.sas.com/t5/Base-SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473652#M121569&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You just need to use dbms=xlsx.&amp;nbsp; Note in my answer there you need to change to:&lt;/P&gt;
&lt;PRE&gt;libname tmp xlsx 'C:\workspace\test.xlsx';&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jun 2018 14:53:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473769#M2258</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-06-27T14:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: importing from Excel</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473789#M2259</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The LIBNAME statement still doesn't work for me, but PROC IMPORT is OK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(In my original post I forgot to mention that I did try DBMS=xlsx as it was suggested somewhere else and it didn't work then, but somehow now it does :))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for the help!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 15:36:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/importing-from-Excel/m-p/473789#M2259</guid>
      <dc:creator>vonda12</dc:creator>
      <dc:date>2018-06-27T15:36:10Z</dc:date>
    </item>
  </channel>
</rss>

