<?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: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473651#M121568</link>
    <description>&lt;P&gt;Use the same engine that works in proc import for your libname:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname tmp xlsx 'C:\workspace\test.xlsx';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS this was meant to be an answer to a post from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/217955"&gt;@xiliang&lt;/a&gt; that has been deleted in the meantime. &lt;/P&gt;</description>
    <pubDate>Wed, 27 Jun 2018 10:35:02 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-06-27T10:35:02Z</dc:date>
    <item>
      <title>ERROR when using SAS Enterprise Guide (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473617#M121560</link>
      <description>&lt;P&gt;When I try to load a file "test.xls" (97-2003 Workbook) that is generated by Microsoft Excel 2010 SMO 64 bit, using Enterprise Guide 64 bit. The test.xls is a The error message is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Connect: Class not registered&lt;/P&gt;
&lt;P&gt;ERROR: Error in the LIBNAME statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried the following statement and all have the same error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname refname excel path="C:\workspace\test.xls'';&lt;/P&gt;
&lt;P&gt;libname refname "C:\workspace\test.xls";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also tried to cover 'test.xls' (Excel 97-2003 Workbook) to 'text.xlsx'(Excel Workbook), and the following statement also did not work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname refname excel path='C:\workspace\test.xlsx';&lt;/P&gt;
&lt;P&gt;libname refname xlsx path='C:\workspace\test.xlsx';&lt;/P&gt;
&lt;P&gt;libname refname 'C:\workspace\test.xlsx';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate any advice!&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>Wed, 27 Jun 2018 11:10:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473617#M121560</guid>
      <dc:creator>xiliang</dc:creator>
      <dc:date>2018-06-27T11:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473621#M121561</link>
      <description>&lt;P&gt;You have typos in that code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname tmp excel 'C:\workspace\test.xlsx';&lt;/PRE&gt;
&lt;P&gt;Take the path= out of it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you can use proc import:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile="c:/workspace/test.xlsx" out=want dbms=xlsx replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that to load XLS files you will need pcfiles server as that is a very old file format and windows only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 08:04:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473621#M121561</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-06-27T08:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473625#M121563</link>
      <description>&lt;P&gt;Are you using the Local SAS server? If not, you won't have access to the C: drive of your desktop.&lt;/P&gt;
&lt;P&gt;Do you have SAS/ACCESS to PC Files licensed? Run proc setinit and proc product_status to determine that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 08:12:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473625#M121563</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-06-27T08:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473649#M121567</link>
      <description>&lt;P&gt;The first option below does not work and still has the same error:&lt;/P&gt;&lt;PRE&gt;libname tmp excel 'C:\workspace\test.xlsx';&lt;/PRE&gt;&lt;P&gt;The second option works beautifully:&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;LI-CODE lang="sas"&gt;proc import datafile="c:/workspace/test.xlsx" out=want dbms=xlsx replace; run;&amp;lt;code&amp;gt;&amp;lt;/code&amp;gt;&lt;/LI-CODE&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;My understanding is that I do not need pcfile server, since I have using both 64 bit Excel and 64 bit SAS. The following is from the link of&amp;nbsp;&lt;A href="https://support.sas.com/downloads/package.htm?pid=2167" target="_blank"&gt;SAS Support&lt;/A&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;If you are running a 64-bit version of Microsoft Office and SAS on 64-bit Microsoft Windows, you do not need to install SAS PC Files Server, except if you plan to connect from a Linux- or UNIX-based SAS installation."&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 10:29:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473649#M121567</guid>
      <dc:creator>xiliang</dc:creator>
      <dc:date>2018-06-27T10:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473651#M121568</link>
      <description>&lt;P&gt;Use the same engine that works in proc import for your libname:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname tmp xlsx 'C:\workspace\test.xlsx';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS this was meant to be an answer to a post from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/217955"&gt;@xiliang&lt;/a&gt; that has been deleted in the meantime. &lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 10:35:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473651#M121568</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-06-27T10:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473652#M121569</link>
      <description>&lt;P&gt;Quite true, there are far to many Excel based engines around.&amp;nbsp; Just use a nice open source file format and bin the horrible proprietary stuff for a better future for us all!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 10:34:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473652#M121569</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-06-27T10:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473653#M121570</link>
      <description>&lt;P&gt;I am using my Desktop version of SAS. Does this mean I am using Local SAS server?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I have PC Files licensed. Here is the list:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;BR /&gt;Custom version information: 9.4_M5&lt;BR /&gt;Image version information: 9.04.01M5P090617&lt;BR /&gt;For SAS/STAT ...&lt;BR /&gt;Custom version information: 14.3&lt;BR /&gt;For SAS/GRAPH ...&lt;BR /&gt;Custom version information: 9.4_M5&lt;BR /&gt;For SAS/IML ...&lt;BR /&gt;Custom version information: 14.3&lt;BR /&gt;For SAS/QC ...&lt;BR /&gt;Custom version information: 14.3&lt;BR /&gt;For High Performance Suite ...&lt;BR /&gt;Custom version information: 2.2_M6&lt;BR /&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;Custom version information: 9.4_M5&lt;BR /&gt;For SAS/ACCESS Interface to ODBC ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you using the Local SAS server? If not, you won't have access to the C: drive of your desktop.&lt;/P&gt;&lt;P&gt;Do you have SAS/ACCESS to PC Files licensed? Run proc setinit and proc product_status to determine that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 10:35:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473653#M121570</guid>
      <dc:creator>xiliang</dc:creator>
      <dc:date>2018-06-27T10:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473656#M121571</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Quite true, there are far to many Excel based engines around.&amp;nbsp; Just use a nice open source file format and bin the horrible proprietary stuff for a better future for us all!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Absolutely. That stuff has proven itself to be a total hellhole for users. I know why I exclusively use LibreOffice for my spreadsheet needs. Has kept the same file format and user interface for more than a decade now. That's why I've been urging SAS every now and then to support OpenOffice/LibreOffice, at least the .ods format.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 10:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473656#M121571</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-06-27T10:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR when using SAS Enterprice Guid (64bit, 9.04 Base) to load Microsoft Excel 2010 MSO 64 bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473657#M121572</link>
      <description>&lt;P&gt;Thanks! Indeed the error was caused by a typo!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 10:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-when-using-SAS-Enterprise-Guide-64bit-9-04-Base-to-load/m-p/473657#M121572</guid>
      <dc:creator>xiliang</dc:creator>
      <dc:date>2018-06-27T10:41:33Z</dc:date>
    </item>
  </channel>
</rss>

