<?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: How to import 3 sheets excel workbook into 3 SAS data sets? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164362#M42616</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For second option :&lt;/P&gt;&lt;P&gt;check your path where excel exists.&lt;/P&gt;&lt;P&gt;libname myexcel excel 'C:\Users\Path\myexcel.xls';&lt;/P&gt;&lt;P&gt;data test1;&lt;/P&gt;&lt;P&gt;set myexcel.'sheet1$'n;&lt;/P&gt;&lt;P&gt;data test2;&lt;/P&gt;&lt;P&gt;set myexcel.'sheet2$'n;&lt;/P&gt;&lt;P&gt;data test3;&lt;/P&gt;&lt;P&gt;set myexcel.'sheet3$'n;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;libname myexcel clear;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Feb 2014 18:05:35 GMT</pubDate>
    <dc:creator>pradeepalankar</dc:creator>
    <dc:date>2014-02-05T18:05:35Z</dc:date>
    <item>
      <title>How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164361#M42615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt; Hi SAS Forum,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt;I have been trying (from yesterday) to import "3 sheets excel workbook" into 3 different SAS data sets as the first step of automating an analysis process in my company but failed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt;Based on Internet search, I found 2 approaches.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: yellow; color: black; font-size: 11pt;"&gt;Approach I: Importing multi-sheet excel workbooks into SAS having saved the excel workbook as XML&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: white; color: black; font-size: 11pt;"&gt;In this approach, As the first step, following statement has to be run.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier; font-size: 9pt;"&gt;%include 'LoadXL.sas';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: #0000ff; font-size: 11pt;"&gt;I get this error messege......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: Cannot open %INCLUDE file LoadXL.sas.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; background: yellow; color: black; font-size: 11pt;"&gt;Approach II: using Excel Libname Engine&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;libname&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; myxls &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;excel&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;&lt;A href="https://communities.sas.com/"&gt;\\cbmcc-a8-sas01\RRM\user\DELETE.xls&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: #0000ff; font-size: 11pt;"&gt;I get this error messege......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: The EXCEL engine cannot be found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: Error in the LIBNAME statement.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Q: Could any one help me ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Miris&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 17:10:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164361#M42615</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2014-02-05T17:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164362#M42616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For second option :&lt;/P&gt;&lt;P&gt;check your path where excel exists.&lt;/P&gt;&lt;P&gt;libname myexcel excel 'C:\Users\Path\myexcel.xls';&lt;/P&gt;&lt;P&gt;data test1;&lt;/P&gt;&lt;P&gt;set myexcel.'sheet1$'n;&lt;/P&gt;&lt;P&gt;data test2;&lt;/P&gt;&lt;P&gt;set myexcel.'sheet2$'n;&lt;/P&gt;&lt;P&gt;data test3;&lt;/P&gt;&lt;P&gt;set myexcel.'sheet3$'n;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;libname myexcel clear;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 18:05:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164362#M42616</guid>
      <dc:creator>pradeepalankar</dc:creator>
      <dc:date>2014-02-05T18:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164363#M42617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;Yes, I checked the path.&lt;/P&gt;&lt;P&gt;It is the correct location where my Excel file called "Delete.xls" is residing.&lt;/P&gt;&lt;P&gt;But still below error messege pops up.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: #0000ff; font-size: 11pt;"&gt;I get this error messege......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: The EXCEL engine cannot be found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: Error in the LIBNAME statement.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, thank you very much for your reply.&lt;/P&gt;&lt;P&gt;Miris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 14:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164363#M42617</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2014-02-06T14:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164364#M42618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: #0000ff; font-size: 11pt;"&gt;I get this error messege......&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: The EXCEL engine cannot be found.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: Error in the LIBNAME statement.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Implies you do mot have a suitable SAS/ACCESS product licensed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run the code below to discover abd let us know the components licensed&lt;/P&gt;&lt;P&gt;PROC SETINIT NOALIAS ; RUN ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 15:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164364#M42618</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2014-02-06T15:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164365#M42619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;I ran your code.&lt;/P&gt;&lt;P&gt;PROC SETINIT NOALIAS ; RUN ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Among many other things, below things were found in the log.&lt;BR /&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;---SAS/ACCESS Interface to ORACLE&amp;nbsp;&amp;nbsp; 29APR2014 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---SAS/ACCESS Interface to PC Files&amp;nbsp;&amp;nbsp;&amp;nbsp; 29APR2014 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---SAS/ACCESS Interface to ODBC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 29APR2014 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would this give you the clue that we are looking for?&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Miris&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 13:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164365#M42619</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2014-02-07T13:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164366#M42620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then I can see no reason why you would find that message&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote" style="margin: 10px 20px; padding-left: 10px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 11pt; font-family: 'Courier New'; color: red;"&gt;ERROR: The EXCEL engine cannot be found.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Perhaps&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;SAS/ACCESS Interface to PC Files&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;/PRE&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;cannot be accessed from your SAS session.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Is your SAS a 64bit application and your excel a 32bit app?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 16:36:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164366#M42620</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2014-02-07T16:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164367#M42621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Further on the last question of Peter Crawford:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the answers of Paul Holmes at the bottom of this page&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.runsubmit.com/questions/520/excel-engine-not-found-on-sas92-64-bit"&gt;http://www.runsubmit.com/questions/520/excel-engine-not-found-on-sas92-64-bit&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excelcs&amp;nbsp;&amp;nbsp; +&amp;nbsp; the sas note for examples of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see this too this note&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://support.sas.com/kb/47/237.html"&gt;http://support.sas.com/kb/47/237.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Andre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 16:49:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164367#M42621</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2014-02-07T16:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164368#M42622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter and Andre,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;I ran the following statements in SAS editor.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;%put&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; _automatic_&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Then I got these in the log.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;…………………………………………&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;………………………………………..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;AUTOMATIC SYSSCP WIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;AUTOMATIC SYSSCPL X64_ESRV08&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;…………………………………………&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;………………………………………..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN lang="EN" style="font-family: Symbol; color: #575757; font-size: 10pt;"&gt;&lt;SPAN class="pasted-list-info"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Would this mean my &lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;SAS is a 64bit application.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: Symbol; color: black; font-size: 11pt;"&gt;&lt;SPAN class="pasted-list-info"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;My Excel is 32bit (I checked it)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;Q: If the situation is like above (64 bit SAS and 32 bit Excel), wouldn't there be any mthod to fix the problem of getting errors when I employ Excel Libname Engine below....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri', 'sans-serif'; background: yellow; color: black; font-size: 11pt;"&gt;Approach II: using Excel Libname Engine&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;libname&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; myxls &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;excel&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;&lt;A href="https://communities.sas.com/"&gt;\\abcd-k6-sas01\xxx\user\DELETE.xls&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: #0000ff; font-size: 11pt;"&gt;I get this error messege......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: The EXCEL engine cannot be found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;ERROR: Error in the LIBNAME statement.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;Miris&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757; font-size: 10pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 14:37:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164368#M42622</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2014-02-10T14:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164369#M42623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mirisage,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Did you read this &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://support.sas.com/kb/33/228.html"&gt;http://support.sas.com/kb/33/228.html&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp; in relation to 9.2&amp;nbsp; or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if you are in a more recent context read this&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://support.sas.com/kb/43/802.html"&gt;http://support.sas.com/kb/43/802.html&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;about the pcfile server you have to install or activate&lt;/P&gt;&lt;P&gt;if you want applying code like the mentionned inside this last document!&lt;/P&gt;&lt;P&gt;Excel engine in the libname statement is NOT working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other aspect is in relation to&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;X64_ESRV08:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Are you speaking of sas working on a&lt;STRONG&gt; server&lt;/STRONG&gt;?&amp;nbsp; and downloading to a local pc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The note applies to&amp;nbsp; both cases:&lt;/P&gt;&lt;P&gt;a local&amp;nbsp; pc with w7 64bits&amp;nbsp; with sas 64 bits and office 32 bits&amp;nbsp; &lt;/P&gt;&lt;P&gt;or (that was my other case)&lt;/P&gt;&lt;P&gt;a sas (32&amp;nbsp; bits linux) turning on a distant server&amp;nbsp; on which i submit code to produce an excel file&lt;/P&gt;&lt;P&gt;on my local pc through the pcfilesserver installed on my local pc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Andre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 09:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164369#M42623</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2014-02-13T09:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164370#M42624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andre,&lt;/P&gt;&lt;P&gt;Thank you very much for all these helps.&lt;/P&gt;&lt;P&gt;(I can see my system knowledge needs a lot of work, it is very poor).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 19:54:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164370#M42624</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2014-02-13T19:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164371#M42625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried using proc import instead? See second link that Andre replied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 20:13:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164371#M42625</guid>
      <dc:creator>cwcaulkins</dc:creator>
      <dc:date>2014-02-13T20:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to import 3 sheets excel workbook into 3 SAS data sets?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164372#M42626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chad,&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it worked for Excel 2003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;/*When you import several sheets from a Excel 2003 workbook, I found below macro code works….*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;%macro&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; name1 (one,two);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;PROC IMPORT OUT=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal; font-size: 11pt;"&gt;work.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;amp;one&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAFILE=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;"\\xxxx-xx-sas01\abc\myfiles\testing.&lt;SPAN style="background: yellow;"&gt;xls&lt;/SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DBMS=&lt;SPAN style="background: yellow;"&gt;xls&lt;/SPAN&gt; REPLACE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GETNAMES=YES;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SHEET=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;"&amp;amp;two"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;/*SHEET= option is acceptable */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;%mend&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; name1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;%&lt;STRONG&gt;&lt;EM&gt;name1&lt;/EM&gt;&lt;/STRONG&gt; (file1,Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;%&lt;STRONG&gt;&lt;EM&gt;name1&lt;/EM&gt;&lt;/STRONG&gt; (file2,Sheet2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;%&lt;STRONG&gt;&lt;EM&gt;name1&lt;/EM&gt;&lt;/STRONG&gt; (file3,Sheet3);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;But for Excel 2010, the macro I have shown below did not work.&lt;/P&gt;&lt;P&gt;I do not know why.&lt;/P&gt;&lt;P&gt;But when I imported one sheet at a time (without macronizing) then it worked. So, no problem I can import Excel 2010 sheets one at a time.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: green; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;/*IMPORT EXCEL 2010*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;/*BELOW MACRO CODE &lt;SPAN style="background: yellow;"&gt;DID NOT WORK????*/&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;/*When you import several sheets from a Excel 2010 workbook, I found below macro code &lt;SPAN style="background: yellow;"&gt;DID NOT WORK….&lt;/SPAN&gt;*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: yellow; color: black; font-size: 11pt;"&gt;/*But worse comes to worse you can import 3 sheets one by one, one at a time without macronizing*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;%macro&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; name2 (three,four);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;PROC IMPORT OUT=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal; font-size: 11pt;"&gt;WORK.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;amp;three&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAFILE=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;"\\xxxx-v7-sas01\xyz\mydata\testing.xlsx"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DBMS=EXCELCS REPLACE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;/* GETNAMES=YES;*/&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;/*You cannot use GETNAMES=YES; in this code*/&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SHEET=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;"&amp;amp;four"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;/*SHEET= option is acceptable */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;%mend&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; name2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;%&lt;STRONG&gt;&lt;EM&gt;name2&lt;/EM&gt;&lt;/STRONG&gt; (file4,Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;%&lt;STRONG&gt;&lt;EM&gt;name2&lt;/EM&gt;&lt;/STRONG&gt; (file5,Sheet2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;%&lt;STRONG&gt;&lt;EM&gt;name2&lt;/EM&gt;&lt;/STRONG&gt; (file6,Sheet3);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Thanks everybody for all these helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;Mirisage&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 18:53:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-import-3-sheets-excel-workbook-into-3-SAS-data-sets/m-p/164372#M42626</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2014-02-14T18:53:47Z</dc:date>
    </item>
  </channel>
</rss>

