<?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 importing from excel works but exporting fails with error DBMS type XLSX not valid for export in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937587#M368400</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am reading yesterday's output file from the output folder. The file is in excel .xlsx format, as next step, I am comparing today's results, removing duplicates and exporting to the same folder with today's date. My import works fine, I am able to execute the comparison but when trying to download and export data, I encounter the DBMS type XLSX not valid for export. I faced this error before and I solved it but I couldn't figure out now. Suggestions appreciated!&lt;/P&gt;
&lt;P&gt;p.s- I tried upper and lower cases too.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;rsubmit;
proc export 
data=final_result2
OUTFILE = "myfolder\output\test2_&amp;amp;today..xlsx"
DBMS = xlsx REPLACE;
sheet="list" ;
run;
endrsubmit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;202  proc export
203  data=final_result2
204  OUTFILE = "myfolder\output\test2_&amp;amp;today..xlsx"
205  DBMS = xlsx REPLACE;
ERROR: DBMS type XLSX not valid for export.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE EXPORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

206  sheet="list";
207  run;
NOTE: Remote submit to ACXIOM complete.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 30 Jul 2024 12:40:32 GMT</pubDate>
    <dc:creator>User_2024</dc:creator>
    <dc:date>2024-07-30T12:40:32Z</dc:date>
    <item>
      <title>importing from excel works but exporting fails with error DBMS type XLSX not valid for export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937587#M368400</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am reading yesterday's output file from the output folder. The file is in excel .xlsx format, as next step, I am comparing today's results, removing duplicates and exporting to the same folder with today's date. My import works fine, I am able to execute the comparison but when trying to download and export data, I encounter the DBMS type XLSX not valid for export. I faced this error before and I solved it but I couldn't figure out now. Suggestions appreciated!&lt;/P&gt;
&lt;P&gt;p.s- I tried upper and lower cases too.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;rsubmit;
proc export 
data=final_result2
OUTFILE = "myfolder\output\test2_&amp;amp;today..xlsx"
DBMS = xlsx REPLACE;
sheet="list" ;
run;
endrsubmit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;202  proc export
203  data=final_result2
204  OUTFILE = "myfolder\output\test2_&amp;amp;today..xlsx"
205  DBMS = xlsx REPLACE;
ERROR: DBMS type XLSX not valid for export.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE EXPORT used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

206  sheet="list";
207  run;
NOTE: Remote submit to ACXIOM complete.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jul 2024 12:40:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937587#M368400</guid>
      <dc:creator>User_2024</dc:creator>
      <dc:date>2024-07-30T12:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: importing from excel works but exporting fails with error DBMS type XLSX not valid for export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937589#M368402</link>
      <description>&lt;P&gt;What version of SAS is running on ACXIOM?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 12:51:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937589#M368402</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-30T12:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: importing from excel works but exporting fails with error DBMS type XLSX not valid for export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937620#M368416</link>
      <description>SAS 9.4 &lt;BR /&gt;</description>
      <pubDate>Tue, 30 Jul 2024 14:36:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937620#M368416</guid>
      <dc:creator>User_2024</dc:creator>
      <dc:date>2024-07-30T14:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: importing from excel works but exporting fails with error DBMS type XLSX not valid for export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937641#M368423</link>
      <description>&lt;P&gt;I fixed the issue. I tried proc export out of the remote statements and it worked. thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 15:55:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/importing-from-excel-works-but-exporting-fails-with-error-DBMS/m-p/937641#M368423</guid>
      <dc:creator>User_2024</dc:creator>
      <dc:date>2024-07-30T15:55:57Z</dc:date>
    </item>
  </channel>
</rss>

