<?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: Have you ever created an Excel file using SAS that could not be read by Minitab? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159030#M8291</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using libname with the EXCEL engine solved the problem but I still do not know the reason why Proc Export causes the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname mylib excel "e:\testing\trash\MyFile testing output.xlsx";&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;proc sql; drop table mylib.testing; quit;&lt;BR /&gt;&amp;nbsp; data mylib.testing;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set anova_full;&lt;BR /&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;libname mylib clear;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2014 18:54:13 GMT</pubDate>
    <dc:creator>jwillis</dc:creator>
    <dc:date>2014-08-13T18:54:13Z</dc:date>
    <item>
      <title>Have you ever created an Excel file using SAS that could not be read by Minitab?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159025#M8286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you ever created an Excel file using SAS that could not be read by Minitab? If so, how did you fix the problem? A coworker used proc export (dbms=xlsx) to create a two column, 125 row spreadsheet.&amp;nbsp; Minitab will not read the SAS created .xlsx file but will read a (copy/saved as) version of the file.&amp;nbsp; The coworker is using SAS 9.4 on a 64 bit processor.&amp;nbsp; I've googled the internet and searched through SAS but I cannot find any references to the issue.&amp;nbsp;&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;38&amp;nbsp;&amp;nbsp; data anova_full;&lt;BR /&gt;39&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do line = 1 to 3;&lt;BR /&gt;40&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do j = 1 to 50;&lt;BR /&gt;41&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if line=1 then ct = round(0.1 + 0.09*normal(1),.0001);&lt;BR /&gt;42&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if line=2 then ct = round(0.07 + 0.1*normal(1),.0001);&lt;BR /&gt;43&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if line=3 then ct = round(0.05 + 0.1*normal(1),.0001);&lt;BR /&gt;44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;BR /&gt;45&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;46&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;47&lt;BR /&gt;48&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop j;&lt;BR /&gt;49&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.ANOVA_FULL has 150 observations and 2 variables.&lt;BR /&gt;NOTE: DATA statement 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.10 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.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;50&amp;nbsp;&amp;nbsp; proc export&lt;BR /&gt;51&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data=anova_full&lt;BR /&gt;52&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbms=xlsx&lt;BR /&gt;53&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile="e:\testing\trash\anova.xlsx"&lt;BR /&gt;54&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; replace;&lt;BR /&gt;55&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;NOTE: The export data set has 150 observations and 2 variables.&lt;BR /&gt;NOTE: "e:\testing\trash\anova.xlsx" file was successfully created.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 14:44:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159025#M8286</guid>
      <dc:creator>jwillis</dc:creator>
      <dc:date>2014-08-13T14:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Have you ever created an Excel file using SAS that could not be read by Minitab?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159026#M8287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you elaborate a bit more on Copy/Save As?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 14:59:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159026#M8287</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-08-13T14:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Have you ever created an Excel file using SAS that could not be read by Minitab?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159027#M8288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, I am unable to elaborate.&amp;nbsp; The message I received was "copied the spreadsheet and it worked (Minitab read the copied spreadsheet)".&amp;nbsp; I have SAS 9.3 and do not have Minitab.&amp;nbsp; There was an issue where popups were displaying when they opened the 'EXPORT' original spreadsheet.&amp;nbsp; I cannot elaborate because I do not have pictures of what I saw and I do not have 9.4, 64bit to replicate what I saw.&amp;nbsp; I did not have any issues opening any of the spreadsheets using 9.3, 32 bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having the users test the code below now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname mylib excel "e:\testing\trash\MyFile testing output.xlsx";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data mylib.testing;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set anova_full;&lt;BR /&gt;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 15:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159027#M8288</guid>
      <dc:creator>jwillis</dc:creator>
      <dc:date>2014-08-13T15:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Have you ever created an Excel file using SAS that could not be read by Minitab?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159028#M8289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could also test XLS.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also why not leave EXCEL out completely and create a CSV?&amp;nbsp; I expect MINITAB can read CSV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 15:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159028#M8289</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-08-13T15:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Have you ever created an Excel file using SAS that could not be read by Minitab?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159029#M8290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We tested .xls and .xml. and tagsets.excelxp.&amp;nbsp; I think, but have no proof, that the 9.4 64 bit platform is the issue.&amp;nbsp; I can't test this thought because I only have 9.3 32 bit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 15:46:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159029#M8290</guid>
      <dc:creator>jwillis</dc:creator>
      <dc:date>2014-08-13T15:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Have you ever created an Excel file using SAS that could not be read by Minitab?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159030#M8291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using libname with the EXCEL engine solved the problem but I still do not know the reason why Proc Export causes the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname mylib excel "e:\testing\trash\MyFile testing output.xlsx";&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;proc sql; drop table mylib.testing; quit;&lt;BR /&gt;&amp;nbsp; data mylib.testing;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set anova_full;&lt;BR /&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;libname mylib clear;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 18:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Have-you-ever-created-an-Excel-file-using-SAS-that-could-not-be/m-p/159030#M8291</guid>
      <dc:creator>jwillis</dc:creator>
      <dc:date>2014-08-13T18:54:13Z</dc:date>
    </item>
  </channel>
</rss>

