<?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: Please help--libname excel---SAS9.3 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354831#M83064</link>
    <description>Thank you,but I don't have that engine&lt;BR /&gt; libname xl xlsx 'C:\temp\abc.xlsx';&lt;BR /&gt;ERROR: The XLSX engine cannot be found.&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;BR /&gt;</description>
    <pubDate>Sun, 30 Apr 2017 19:50:53 GMT</pubDate>
    <dc:creator>GeorgeSAS</dc:creator>
    <dc:date>2017-04-30T19:50:53Z</dc:date>
    <item>
      <title>Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354824#M83059</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;abc.xlsx has three sheets:&amp;nbsp;sheet1, sheet2, sheet3&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;After I use&amp;nbsp;&lt;SPAN&gt;libname XL excel , the XL folder has three sheets: sheet1&lt;STRONG&gt;$&lt;/STRONG&gt;, sheet2&lt;STRONG&gt;$&lt;/STRONG&gt;, sheet3&lt;STRONG&gt;$&lt;/STRONG&gt; (There is a &lt;STRONG&gt;$&lt;/STRONG&gt; follow each sheet name,why? )&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I want to update an exist sheet(sheet3---sheet3$) ,replace it with other sas dataset(sashelp.class):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname XL excel 'C:\temp\abc.xlsx';

proc sql;
drop table XL.'Sheet3$'n;
quit;

data XL.Sheet3;
set sashelp.class;
run;

libname XL clear;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;The old Sheet3 will be still there, but the new one I just created will become sheet&lt;STRONG&gt;31&lt;/STRONG&gt;.&amp;nbsp;--------------?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 18:47:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354824#M83059</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-04-30T18:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354828#M83061</link>
      <description>&lt;P&gt;I recall having this problem in SAS 9.3, here are some things to try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. You refer to it with $ in one location but not the other. Try being consistent. I believe the $ refers to the named range while the reference without the $ refers to a sheet.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname XL excel 'C:\temp\abc.xlsx';

proc sql;
drop table XL.Sheet3;
quit;

data XL.Sheet3;
set sashelp.class;
run;&lt;BR /&gt;
libname XL clear;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname XL excel 'C:\temp\abc.xlsx';

proc sql;
drop table XL.'Sheet3$'n;
quit;

data XL.'Sheet3$'n;
set sashelp.class;
run;

libname XL clear;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2. Try using PCFILES instead of Excel. If you don't have PCFILES server installed you may need to add it in.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname xl pcfiles path = 'C:\temp\sample.xlsx';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What's your specific version of SAS, for example &amp;nbsp;9.3 TS2M3?&lt;/P&gt;
&lt;P&gt;You can find your specific version using the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc setinit; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, note how I included my code using the {i} icon, it's much easier to read. Please keep your code together and use the code insertion in the edition.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 18:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354828#M83061</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-30T18:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354829#M83062</link>
      <description>&lt;P&gt;Hello Reeza,&lt;BR /&gt;Thank you very much! but the methods all not work for me:&lt;BR /&gt;&lt;BR /&gt;1.&lt;/P&gt;
&lt;PRE&gt;libname XL excel 'C:\temp\abc.xlsx';

proc sql;
drop table XL.'Sheet3$'n;
quit;

data XL.'Sheet3$'n;
set sashelp.class;
run;
&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------ERROR: The MS Excel table Sheet3$ has been opened for OUTPUT. This table already&lt;BR /&gt; exists, or there is a name conflict with an existing object. This table will&lt;BR /&gt; not be replaced. This engine does not support the REPLACE option.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2.&lt;/P&gt;
&lt;PRE&gt;libname XL excel 'C:\temp\abc.xlsx';

proc sql;
drop table XL.Sheet3;
quit;
&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;--------------WARNING: File XL.Sheet3.DATA does not exist.&lt;BR /&gt;---------------WARNING: Table XL.Sheet3 has not been dropped.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;data XL.Sheet3;
set sashelp.class;
run;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;----------------Sheet31 will be created, sheet3 keep not change&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;libname XL clear;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;proc setinit; run; &lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;----------------not show specific version of SAS&lt;BR /&gt;&lt;BR /&gt;397 proc setinit; run;&lt;BR /&gt;&lt;BR /&gt;NOTE: PROCEDURE SETINIT used (Total process time):&lt;BR /&gt; real time 0.00 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Operating System: W32_WKS .&lt;BR /&gt;Product expiration dates:&lt;BR /&gt;---Base SAS Software&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/STAT&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/GRAPH&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ETS&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/FSP&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/OR&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/AF&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/IML&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/QC&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/LAB&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ASSIST&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/CONNECT&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/INSIGHT&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/EIS&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Enterprise Miner&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---MDDB Server common products&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Integration Technologies&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/Secure Windows&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Text Miner&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Enterprise Guide&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---OR OPT&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---OR PRS&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---OR IVS&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---OR LSO&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to DB2&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to Oracle&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to Sybase&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to PC Files&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to ODBC&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to OLE DB&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to Teradata&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ACCESS Interface to MySQL&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/IML Studio&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Workspace Server for Local Access&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---DataFlux Trans DB Driver&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Framework Data Server&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---Reserved for Dataflux&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS Add-in for Microsoft Excel&lt;BR /&gt; 31OCT2017&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 20:26:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354829#M83062</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-04-30T20:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354830#M83063</link>
      <description>&lt;P&gt;As much as I know you should define:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname xl &lt;STRONG&gt;xlsx&lt;/STRONG&gt; 'C:\temp\abc.xlsx';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then you can input each sheet by:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data new;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set xl.sheet1; &amp;nbsp;/* or sheet 2 etc. */&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try it.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 19:45:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354830#M83063</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-04-30T19:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354831#M83064</link>
      <description>Thank you,but I don't have that engine&lt;BR /&gt; libname xl xlsx 'C:\temp\abc.xlsx';&lt;BR /&gt;ERROR: The XLSX engine cannot be found.&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;BR /&gt;</description>
      <pubDate>Sun, 30 Apr 2017 19:50:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354831#M83064</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-04-30T19:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354832#M83065</link>
      <description>&lt;P&gt;You should see someting like the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasSource"&gt;58 proc setinit; run;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote1_1492343909627" class="sasNote"&gt;NOTE: PROCEDURE SETINIT used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Original site validation data&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Current version: 9.04.01M4P110916&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Site name: 'UNIVERSITY EDITION 2.4 9.4M4'.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Site number: 70208402.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;CPU A: Model name='' model number='' serial='+2'.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Expiration: 16JUN2017.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Grace Period: 0 days (ending 16JUN2017).&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Warning Period: 45 days (ending 31JUL2017).&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;System birthday: 09NOV2016.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Operating System: LIN X64 .&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Product expiration dates:&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---Base SAS Software 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS/STAT 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS/ETS 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS/IML 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS/ACCESS Interface to PC Files 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS/IML Studio 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS Workspace Server for Local Access 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---SAS Workspace Server for Enterprise Access 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;---High Performance Suite 16JUN2017 (CPU A)&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;59&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;60 %put &amp;amp;sysvlong;&lt;/DIV&gt;
&lt;DIV id="sasLogNote2_1492343909627" class="sasNote"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;9.04.01M4P110916&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000"&gt;I didn't see the PCFILES version? Did that not work at all?&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000"&gt;If you don't have the XLSX engine I suspect you're not on SAS 9.3 TS2M3 which was the last version for SAS 9.3&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000"&gt;Your next steps are:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000"&gt;Talk to SAS tech support to see if there's any other options&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000"&gt;Upgrade to SAS 9.4 - upgrades are included in your annual license.&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 30 Apr 2017 21:31:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354832#M83065</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-30T21:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354835#M83067</link>
      <description>&lt;P&gt;The proc setint doesn't show me Current version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Site number: 70064409.&lt;BR /&gt;Expiration: 31OCT2017.&lt;BR /&gt;Grace Period: 45 days (ending 15DEC2017).&lt;BR /&gt;Warning Period: 45 days (ending 29JAN2018).&lt;BR /&gt;System birthday: 27DEC2016.&lt;BR /&gt;Operating System: W32_WKS .&lt;BR /&gt;Product expiration dates:&lt;BR /&gt;---Base SAS Software&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/STAT&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/GRAPH&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/ETS&lt;BR /&gt; 31OCT2017&lt;BR /&gt;---SAS/FSP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;......&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;%put &amp;amp;sysvlong;&lt;BR /&gt;-------------9.03.01M0P060711&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Upgrade to SAS 9.4 now will be no charge at this time?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 21:55:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354835#M83067</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-04-30T21:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354845#M83072</link>
      <description>&lt;P&gt;Yeah, that's the original SAS 9.3.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As as long as you have a valid SAS license you can upgrade for free. It's included as part of the license.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TBH I've only seen this version as a pirated copy, and not even recently since SAS released SAS UE which is free for users.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually big companies only install software after a second or third release. This is the first 9.3 version from 2011.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 23:23:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354845#M83072</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-30T23:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354968#M83109</link>
      <description>I got an alternative but not fully solution.&lt;BR /&gt;save xlsx file as xls,then:&lt;BR /&gt;libname XL excel 'C:\temp\test\thiswork.xls' SCAN_TEXT=NO;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;update xl.'Sheet3$'n &lt;BR /&gt; set bbb=111&lt;BR /&gt; where aaa=666&lt;BR /&gt; ;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;libname _all_ clear;</description>
      <pubDate>Mon, 01 May 2017 15:56:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/354968#M83109</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-05-01T15:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Please help--libname excel---SAS9.3</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/355086#M83160</link>
      <description>&lt;P&gt;In my experience UPDATE can still fail, which is why I usually drop first. Another option is to work with a template so you're not dropping/updating but just inserting each time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 21:48:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Please-help-libname-excel-SAS9-3/m-p/355086#M83160</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-01T21:48:26Z</dc:date>
    </item>
  </channel>
</rss>

