<?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: Opening an Excel workbook using LIBNAME in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367133#M275293</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;should have specified PCFILES as the engine, not EXCEL:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works:&lt;/P&gt;&lt;P&gt;LIBNAME MyLibRef&amp;nbsp;PCFILES "C:\MYPATH\MYEXCEL.XLS" ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, I appreciate your help.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jun 2017 20:24:11 GMT</pubDate>
    <dc:creator>JohnSAScom</dc:creator>
    <dc:date>2017-06-14T20:24:11Z</dc:date>
    <item>
      <title>Opening an Excel workbook using LIBNAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367100#M275291</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LIBNAME MyLibRef EXCEL "C:\MYPATH\MYEXCEL.XLS" ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gives me&amp;nbsp;errors.&amp;nbsp; Any ideas on what's wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using SAS 9.3 and Excel 2013.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 18:53:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367100#M275291</guid>
      <dc:creator>JohnSAScom</dc:creator>
      <dc:date>2017-06-14T18:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Opening an Excel workbook using LIBNAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367102#M275292</link>
      <description>&lt;P&gt;Post the text of the error.&lt;/P&gt;
&lt;P&gt;There can be many issues: incorrect path, incorrect filename, file type doesn't match expectation of the engine (xls and xlsx are NOT the same file format), whether you have access to PC Files licensed, system permissions, and that's just a start.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 19:00:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367102#M275292</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-06-14T19:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Opening an Excel workbook using LIBNAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367133#M275293</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;should have specified PCFILES as the engine, not EXCEL:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works:&lt;/P&gt;&lt;P&gt;LIBNAME MyLibRef&amp;nbsp;PCFILES "C:\MYPATH\MYEXCEL.XLS" ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, I appreciate your help.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 20:24:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367133#M275293</guid>
      <dc:creator>JohnSAScom</dc:creator>
      <dc:date>2017-06-14T20:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Opening an Excel workbook using LIBNAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367859#M275294</link>
      <description>&lt;P&gt;This always works&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Verdana" size="3"&gt;libname&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt; HELLO pcfiles path = &lt;/FONT&gt;&lt;FONT color="#800080" face="Verdana" size="3"&gt;"C:\TEMP\myfile.xlsx"&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt; textsize = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Verdana" size="3"&gt;32767&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Verdana" size="3"&gt; ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Verdana" size="3"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt; MYFILE;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Verdana" size="3"&gt;set&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt; HELLO.'MYSHEET$'n;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Verdana" size="3"&gt;run&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Verdana" size="3"&gt;libname&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt; HELLO &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Verdana" size="3"&gt;clear&lt;/FONT&gt;&lt;FONT face="Verdana" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 19:18:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Opening-an-Excel-workbook-using-LIBNAME/m-p/367859#M275294</guid>
      <dc:creator>nketata</dc:creator>
      <dc:date>2017-06-16T19:18:46Z</dc:date>
    </item>
  </channel>
</rss>

