<?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 xlsx in SAS 32-bit in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792857#M254061</link>
    <description>&lt;P&gt;I make that typo all of the time.&lt;/P&gt;
&lt;PRE&gt;1563  filename xxx temp;
1564  proc export data=sashelp.class dbms=xlsx file=xxx replace;
1564!                                                            run;

NOTE: The export data set has 19 observations and 5 variables.
NOTE: "XXX" file was successfully created.
NOTE: PROCEDURE EXPORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds


1565  proc import datafile=xxx dbms=xslx out=class replace;
ERROR: DBMS type XSLX not valid for import.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

1565!                                                       run;
1566  proc import datafile=xxx dbms=xlsx out=class replace;
1566!                                                       run;

NOTE: One or more variables were converted because the data type is not supported by the V9 engine. For more details, run with
      options MSGLEVEL=I.
NOTE: The import data set has 19 observations and 5 variables.
NOTE: WORK.CLASS data set was successfully created.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
&lt;/PRE&gt;
&lt;P&gt;The other one to try is to get it wrong on the filename extension and then you have to try to figure out why Excel won't open it.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jan 2022 13:51:42 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2022-01-27T13:51:42Z</dc:date>
    <item>
      <title>Import xlsx in SAS 32-bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792514#M253932</link>
      <description>&lt;P&gt;Hi, I'm trying to import &lt;STRONG&gt;xlsx&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;file into&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;SAS&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;9.4 M7&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;(32-bit) &lt;/STRONG&gt;without success.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my SAS code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;/* Import data */&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;PROC IMPORT OUT=WORK.RFI_CONTACT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;DATAFILE="Y:\Biostat\RFI\RFI_draft_20220126.xlsx"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;DBMS=XLSX REPLACE;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;RANGE="CONTACT DETAILS";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;GETNAMES=YES;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;MIXED=NO;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;SCANTEXT=YES;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;USEDATE=YES;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this is the &lt;FONT color="#FF0000"&gt;error&lt;/FONT&gt;:&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#FF0000"&gt;ERROR: DBMS type XSLX not valid for import.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think that the problem is because my Office environment could be&amp;nbsp;64-bit but I don't know how to solve the problem.&lt;/P&gt;&lt;P&gt;I don't want to use the wizard.&lt;/P&gt;&lt;P&gt;Can you help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have downloaded SAS 32-bit version because it was suggested by the system during the installation process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 16:03:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792514#M253932</guid>
      <dc:creator>elena_pasquali</dc:creator>
      <dc:date>2022-01-26T16:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Import xlsx in SAS 32-bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792558#M253950</link>
      <description>&lt;P&gt;Do you have a typo somewhere, the code and the error message don't appear to match&amp;nbsp;&lt;BR /&gt;The code has xLSx but the error xSLx&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Can you import a different Excel file?&lt;BR /&gt;&lt;BR /&gt;Use the wizard and see if returns an error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 17:14:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792558#M253950</guid>
      <dc:creator>AMSAS</dc:creator>
      <dc:date>2022-01-26T17:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: Import xlsx in SAS 32-bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792565#M253952</link>
      <description>&lt;P&gt;The nice thing about the XLSX engine is that it does not rely on external modules, and is therefore not depending on bitness. After all, XLSX is just a ZIP archive of XML files.&lt;/P&gt;
&lt;P&gt;Most likely you do not have SAS/ACCESS to PC Files licensed or installed.&lt;/P&gt;
&lt;P&gt;Please run PROC SETINIT and PROC PRODUCTSTATUS, and post the log from that.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 17:34:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792565#M253952</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-01-26T17:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Import xlsx in SAS 32-bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792852#M254056</link>
      <description>Save it as low version Excel file like Excel 2003 .and using DBMS=XLS  or DBMS=EXCEL</description>
      <pubDate>Thu, 27 Jan 2022 13:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792852#M254056</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-01-27T13:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Import xlsx in SAS 32-bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792857#M254061</link>
      <description>&lt;P&gt;I make that typo all of the time.&lt;/P&gt;
&lt;PRE&gt;1563  filename xxx temp;
1564  proc export data=sashelp.class dbms=xlsx file=xxx replace;
1564!                                                            run;

NOTE: The export data set has 19 observations and 5 variables.
NOTE: "XXX" file was successfully created.
NOTE: PROCEDURE EXPORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds


1565  proc import datafile=xxx dbms=xslx out=class replace;
ERROR: DBMS type XSLX not valid for import.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

1565!                                                       run;
1566  proc import datafile=xxx dbms=xlsx out=class replace;
1566!                                                       run;

NOTE: One or more variables were converted because the data type is not supported by the V9 engine. For more details, run with
      options MSGLEVEL=I.
NOTE: The import data set has 19 observations and 5 variables.
NOTE: WORK.CLASS data set was successfully created.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds
&lt;/PRE&gt;
&lt;P&gt;The other one to try is to get it wrong on the filename extension and then you have to try to figure out why Excel won't open it.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 13:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/792857#M254061</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-01-27T13:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Import xlsx in SAS 32-bit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/794979#M254964</link>
      <description>&lt;P&gt;Thank you for your answer!&lt;/P&gt;&lt;P&gt;The problem was related to the&amp;nbsp;&lt;SPAN&gt;SAS/ACCESS to PC Files, it was present in the trial version but not in the official one!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 13:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-xlsx-in-SAS-32-bit/m-p/794979#M254964</guid>
      <dc:creator>elena_pasquali</dc:creator>
      <dc:date>2022-02-08T13:20:32Z</dc:date>
    </item>
  </channel>
</rss>

