<?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: import from excel  and save it to a permanent library in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545611#M150962</link>
    <description>&lt;P&gt;what is incorrect in this libname statement you have supplied&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;"d:data.xlsx"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;where are the \/'s&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;would this be a more correct path&amp;nbsp;"d:\data.xlsx"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;create a libname to the excel information.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;libname myexcel xlsx "d:\";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;you will then have access to all xlsx files in that libname.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 24 Mar 2019 17:23:03 GMT</pubDate>
    <dc:creator>VDD</dc:creator>
    <dc:date>2019-03-24T17:23:03Z</dc:date>
    <item>
      <title>import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545600#M150956</link>
      <description>&lt;P&gt;libname new 'd:\SAS-library';&lt;BR /&gt;input sal @@;&lt;BR /&gt;cards;&lt;BR /&gt;0.593 0.142 0.329 0.691 0.231&lt;BR /&gt;0.793 0.519 0.392 0.418&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc print data=new.sal;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;error : libname new is not assigned error&lt;/P&gt;&lt;P&gt;this was a test code.. but I wanted to bring excel data into a library.&lt;/P&gt;&lt;P&gt;help||||&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 14:26:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545600#M150956</guid>
      <dc:creator>ralphbenno</dc:creator>
      <dc:date>2019-03-24T14:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545606#M150959</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=v7;
libname NP xlsx  "/data/np_info.xlsx";
proc contents data=np.parks;
run;
libname np clear;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 24 Mar 2019 15:14:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545606#M150959</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-03-24T15:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545608#M150960</link>
      <description>How do you import an excel file?&lt;BR /&gt;&lt;BR /&gt;libname e xslx "path-and-filename-with-extension";&lt;BR /&gt;libname p "existing-directory";&lt;BR /&gt;&lt;BR /&gt;proc copy in=e out=p;&lt;BR /&gt;  /* Maybe use SELECT to choose the tables to be copied */&lt;BR /&gt;run;</description>
      <pubDate>Sun, 24 Mar 2019 16:08:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545608#M150960</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-03-24T16:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545610#M150961</link>
      <description>&lt;P&gt;it did not work&lt;/P&gt;&lt;P&gt;here is my code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data sales;&lt;BR /&gt;proc import datafile="d:data.xlsx"&lt;BR /&gt;dbms=excel&lt;BR /&gt;out=region;&lt;BR /&gt;run;&lt;BR /&gt;proc print&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;I got an error= device offline&lt;/P&gt;&lt;P&gt;and my data look like&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;c&lt;/TD&gt;&lt;TD&gt;g&lt;/TD&gt;&lt;TD&gt;m&lt;/TD&gt;&lt;TD&gt;p&lt;/TD&gt;&lt;TD&gt;n&lt;/TD&gt;&lt;TD&gt;s&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;90108&lt;/TD&gt;&lt;TD&gt;57770&lt;/TD&gt;&lt;TD&gt;53059&lt;/TD&gt;&lt;TD&gt;30644&lt;/TD&gt;&lt;TD&gt;74770&lt;/TD&gt;&lt;TD&gt;68813&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;94928&lt;/TD&gt;&lt;TD&gt;63935&lt;/TD&gt;&lt;TD&gt;57789&lt;/TD&gt;&lt;TD&gt;33871&lt;/TD&gt;&lt;TD&gt;91463&lt;/TD&gt;&lt;TD&gt;76651&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;84789&lt;/TD&gt;&lt;TD&gt;53530&lt;/TD&gt;&lt;TD&gt;50264&lt;/TD&gt;&lt;TD&gt;28114&lt;/TD&gt;&lt;TD&gt;74082&lt;/TD&gt;&lt;TD&gt;67097&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;75063&lt;/TD&gt;&lt;TD&gt;49427&lt;/TD&gt;&lt;TD&gt;43459&lt;/TD&gt;&lt;TD&gt;25980&lt;/TD&gt;&lt;TD&gt;59728&lt;/TD&gt;&lt;TD&gt;63147&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Sun, 24 Mar 2019 17:14:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545610#M150961</guid>
      <dc:creator>ralphbenno</dc:creator>
      <dc:date>2019-03-24T17:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545611#M150962</link>
      <description>&lt;P&gt;what is incorrect in this libname statement you have supplied&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;"d:data.xlsx"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;where are the \/'s&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;would this be a more correct path&amp;nbsp;"d:\data.xlsx"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;create a libname to the excel information.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;libname myexcel xlsx "d:\";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;you will then have access to all xlsx files in that libname.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 17:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545611#M150962</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-03-24T17:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545613#M150963</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122002"&gt;@VDD&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;libname myexcel xlsx "d:\";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;you will then have access to all xlsx files in that libname.&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That is not how the XLSX engine works. You need to give it the path of a single XLSX workbook file. Not a directory.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you have access to all of the SHEETS in that single WORKBOOK.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 17:37:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545613#M150963</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-24T17:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545616#M150965</link>
      <description>You are mixing data step an proc import, there should be errors in the log. &lt;BR /&gt;&lt;BR /&gt;The following step should create a temporary dataset:&lt;BR /&gt;&lt;BR /&gt;proc import datafile="d:\data.xlsx"&lt;BR /&gt;dbms=xlsx&lt;BR /&gt;out=region;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;If you get any errors, post the log using the {i} button.</description>
      <pubDate>Sun, 24 Mar 2019 18:52:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545616#M150965</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-03-24T18:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545620#M150968</link>
      <description>&lt;P&gt;I tried your fix and still getting an error&lt;/P&gt;&lt;P&gt;NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA.&lt;BR /&gt;NOTE: SAS (r) Proprietary Software 9.4 (TS1M3)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Licensed to UNIVERSITY OF WEST FLORIDA - SFA T&amp;amp;R, Site 70129736.&lt;BR /&gt;NOTE: This session is executing on the X64_8PRO&amp;nbsp; platform.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NOTE: Updated analytical products:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS/STAT 14.1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS/ETS 14.1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS/OR 14.1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS/IML 14.1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS/QC 14.1&lt;/P&gt;&lt;P&gt;NOTE: Additional host information:&lt;/P&gt;&lt;P&gt;&amp;nbsp;X64_8PRO WIN 6.2.9200&amp;nbsp; Workstation&lt;/P&gt;&lt;P&gt;NOTE: SAS initialization used:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.71 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.46 seconds&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp; proc import datafile="d:\data.xlsx"&lt;BR /&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp; dbms=xlsx&lt;BR /&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp; out=region;&lt;BR /&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;ERROR: Error opening XLSX file -&amp;gt; d:\\data.xlsx .&amp;nbsp; It is either not an Excel spreadsheet or it is&lt;BR /&gt;damaged.&amp;nbsp;&amp;nbsp; Error code=80000808&lt;BR /&gt;Requested Input File Is Invalid&lt;BR /&gt;ERROR: Import unsuccessful.&amp;nbsp; See SAS Log for details.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please explain again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thks&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 19:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545620#M150968</guid>
      <dc:creator>ralphbenno</dc:creator>
      <dc:date>2019-03-24T19:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545628#M150973</link>
      <description>&lt;P&gt;SAS is saying that your file with a name that ends in .XLSX is not, in fact, an XLSX file.&lt;/P&gt;
&lt;P&gt;Try opening it in Excel and saving it as a new file and make sure to get the filetype when you save it.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 20:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545628#M150973</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-24T20:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: import from excel  and save it to a permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545649#M150987</link>
      <description>If you ran some of the other code, there's a change you've destroyed your file because you essentially overwrote it. If you can, restore it and ensure it's correct and then try the code you've posted again.</description>
      <pubDate>Sun, 24 Mar 2019 23:11:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-from-excel-and-save-it-to-a-permanent-library/m-p/545649#M150987</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-24T23:11:45Z</dc:date>
    </item>
  </channel>
</rss>

