<?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: SAS version numbers versus XLSX libname engine - question in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868664#M343160</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/430354"&gt;@Unagi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually according to this Blog&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sasdummy/2015/05/20/using-libname-xlsx-to-read-and-write-excel-files/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2015/05/20/using-libname-xlsx-to-read-and-write-excel-files/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The XLSX engine was added to SAS 9.4 M2&lt;/P&gt;
&lt;P&gt;From the blog, to see the sheet names stored in a specified workbook, try this code&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* because Excel field names often have spaces */
options validvarname=any;
libname xl XLSX '/folders/myfolders/sas_tech_talks_15.xlsx';
&lt;BR /&gt;/* discover member (DATA) names */
proc datasets lib=xl; quit;
&lt;BR /&gt;libname xl CLEAR;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;</description>
    <pubDate>Fri, 07 Apr 2023 19:58:26 GMT</pubDate>
    <dc:creator>AhmedAl_Attar</dc:creator>
    <dc:date>2023-04-07T19:58:26Z</dc:date>
    <item>
      <title>SAS version numbers versus XLSX libname engine - question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868649#M343151</link>
      <description>&lt;P&gt;Hello, had a question regarding the XLSX libname engine. I am running&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;SAS EG version 9.04.01M5.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;I can successfully&amp;nbsp;assign the library.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;I am trying to simply use proc contents on the assigned XLSX library, but the library doesn't show the sheet names and the engine doesn't operate like I would expect it to. Do I have too old a version to utilize the XLSX engine?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 18:06:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868649#M343151</guid>
      <dc:creator>Unagi</dc:creator>
      <dc:date>2023-04-07T18:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAS version numbers versus XLSX libname engine - question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868654#M343153</link>
      <description>&lt;P&gt;Since the XLSX LIBNAME can also be used to create a new Excel file, a successful LIBNAME does not mean that the file actually exists in the context of the SAS session. Keep in mind that your SAS may run on a server which has no connection to your desktop's drives.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 18:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868654#M343153</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-04-07T18:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS version numbers versus XLSX libname engine - question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868664#M343160</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/430354"&gt;@Unagi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually according to this Blog&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sasdummy/2015/05/20/using-libname-xlsx-to-read-and-write-excel-files/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2015/05/20/using-libname-xlsx-to-read-and-write-excel-files/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The XLSX engine was added to SAS 9.4 M2&lt;/P&gt;
&lt;P&gt;From the blog, to see the sheet names stored in a specified workbook, try this code&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* because Excel field names often have spaces */
options validvarname=any;
libname xl XLSX '/folders/myfolders/sas_tech_talks_15.xlsx';
&lt;BR /&gt;/* discover member (DATA) names */
proc datasets lib=xl; quit;
&lt;BR /&gt;libname xl CLEAR;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 19:58:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-version-numbers-versus-XLSX-libname-engine-question/m-p/868664#M343160</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2023-04-07T19:58:26Z</dc:date>
    </item>
  </channel>
</rss>

