<?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: How to close excel prompts? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86998#M24848</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked. Thank You!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Mar 2013 17:16:22 GMT</pubDate>
    <dc:creator>vicky07</dc:creator>
    <dc:date>2013-03-25T17:16:22Z</dc:date>
    <item>
      <title>How to close excel prompts?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86996#M24846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to export a proc tabulate results to excel file and every time I run, it prompts a window asking permission to open,save or close the file, something like "Do you want to open oe save this file? Is there a way to disable the prompt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html file= "E:\report.xls";&lt;/P&gt;&lt;P&gt;Proc tabulate data=sims_data;&lt;/P&gt;&lt;P&gt;... ;&lt;/P&gt;&lt;P&gt;...;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 04:01:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86996#M24846</guid>
      <dc:creator>vicky07</dc:creator>
      <dc:date>2013-03-25T04:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to close excel prompts?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86997#M24847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are using the HTML destination to create HTML output.&amp;nbsp; The XLS extension tells windows&amp;nbsp; to open the file using excel. Although excel knows how to open an html file, it prompts you to be sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider using the excelxp tagset to save the file as an XML file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file= "c:\report.xml";&lt;/P&gt;&lt;P&gt;Proc tabulate data=sashelp.class;&lt;/P&gt;&lt;P&gt;class sex age;&lt;/P&gt;&lt;P&gt;var height;&lt;/P&gt;&lt;P&gt;table age,sex*height*mean;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 04:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86997#M24847</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2013-03-25T04:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to close excel prompts?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86998#M24848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked. Thank You!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 17:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86998#M24848</guid>
      <dc:creator>vicky07</dc:creator>
      <dc:date>2013-03-25T17:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to close excel prompts?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86999#M24849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Art, I'm too facing a similar issue. Although I divert the output to XML still I get a prompt (window named as File Download) whether to Open or Save or Cancel. Is there any option like NoPrompt or open_excel="no"? I'm using sheet_name=" " option as I got to load data into multiple tabs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS TAGSETS.EXCELXP FILE ="C:\.....\FILENAME.XML";&lt;/P&gt;&lt;P&gt;TITLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; " Title for 1st sheet";&lt;/P&gt;&lt;P&gt;ODS TAGSETS.EXCELXP OPTIONS(SHEET_NAME="SUMMARY" EMBEDDED_TITLES="yes" ABSOLUTE_COLUMN_WIDTH='10,15,8,....');&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; Proc Steps....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;TITLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;nbsp; ";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TITLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; " Title for 2nd sheet";&lt;/P&gt;&lt;P&gt;ODS TAGSETS.EXCELXP OPTIONS(SHEET_NAME="DATA" EMBEDDED_TITLES="yes" ABSOLUTE_COLUMN_WIDTH='10,15,8,....');&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; Proc Steps....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;TITLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;nbsp; ";&lt;/P&gt;&lt;P&gt;ODS _ALL_ CLOSE;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Look forward for your valuable suggestions, Pawan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 10:18:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-close-excel-prompts/m-p/86999#M24849</guid>
      <dc:creator>pawan</dc:creator>
      <dc:date>2013-09-25T10:18:27Z</dc:date>
    </item>
  </channel>
</rss>

