<?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 Batch Export to Excel in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64945#M6524</link>
    <description>Can the EG Export to Excel be put in a batch job?  I don't see any code generated, so I'm assuming it can't.</description>
    <pubDate>Mon, 08 Dec 2008 21:59:27 GMT</pubDate>
    <dc:creator>Kenny</dc:creator>
    <dc:date>2008-12-08T21:59:27Z</dc:date>
    <item>
      <title>Batch Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64945#M6524</link>
      <description>Can the EG Export to Excel be put in a batch job?  I don't see any code generated, so I'm assuming it can't.</description>
      <pubDate>Mon, 08 Dec 2008 21:59:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64945#M6524</guid>
      <dc:creator>Kenny</dc:creator>
      <dc:date>2008-12-08T21:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64946#M6525</link>
      <description>Hi:&lt;BR /&gt;
   If you are exporting DATA (like SASHELP.CLASS) to Excel, then you can do that in a BATCH job using PROC EXPORT. &lt;BR /&gt;
&lt;BR /&gt;
If you want to get your procedure RESULTS (the results of a PROC MEANS, for example) into Excel then you have 2 choices:&lt;BR /&gt;
1) create an output data set from PROC MEANS and then EXPORT the data set with PROC EXPORT &lt;BR /&gt;
or&lt;BR /&gt;
2) use ODS HTML, ODS MSOFFICE2K or ODS TAGSETS.EXCELXP to create an output file that Excel can open and render in Worksheet form.&lt;BR /&gt;
&lt;BR /&gt;
You may have to type code into a CODE node or otherwise set up the code to run as a batch job. There are many examples of this in the SAS documentation.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 09 Dec 2008 00:07:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64946#M6525</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-12-09T00:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64947#M6526</link>
      <description>Thanks,&lt;BR /&gt;
&lt;BR /&gt;
I was trying to write it from a Linux server SAS dataset to a Windows share.  I can use the csv DBMS, but then I still have to move the file to the Win platform.&lt;BR /&gt;
&lt;BR /&gt;
Maybe I can shell out of SAS and run an FTP or something.</description>
      <pubDate>Tue, 09 Dec 2008 20:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64947#M6526</guid>
      <dc:creator>Kenny</dc:creator>
      <dc:date>2008-12-09T20:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64948#M6527</link>
      <description>Hi:&lt;BR /&gt;
  If you have SAS/Access to PC files, then you can use the LIBNAME engine for PCFILES in the manner shown here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/59619/HTML/default/a002644677.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acpcref/59619/HTML/default/a002644677.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
with path=, port= and server= options. This should work in a batch job, as long as all the network widgets are working and connected when the batch job runs.&lt;BR /&gt;
&lt;BR /&gt;
Otherwise, you may have to create the file as CSV with PROC EXPORT (or using ODS TAGSETS.EXCELXP or ODS HTML) and then move the file.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 10 Dec 2008 15:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/64948#M6527</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-12-10T15:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/710506#M37969</link>
      <description>&lt;P&gt;Cynthia, i don't know if you are still working with SAS but i have the following problem:&lt;/P&gt;&lt;P&gt;we using SAS/AF - SAS9.4 on AIX in batch (&lt;SPAN&gt;ODS TAGSETS.EXCELXP&amp;nbsp;)&lt;/SPAN&gt;. after selecting data we want to export it into an excel file. we are using the code:&lt;/P&gt;&lt;P&gt;/* Load ole object */&lt;BR /&gt;hostcl=loadclass('sashelp.fsp.hauto');&lt;BR /&gt;/* Start excel application */&lt;BR /&gt;rc=hostcl._new(excelObj,0,'Excel.Application');&lt;/P&gt;&lt;P&gt;but after the hostclass is set the job stops while excecution the next command - start excel application, without a warning/error etc&lt;/P&gt;&lt;P&gt;it used to work, but we changed servers, ms excel (version 2013) and sas9.1 into sas9.4&lt;/P&gt;&lt;P&gt;did we miss some settings in excel/sas?&lt;/P&gt;&lt;P&gt;can you help us out?&lt;/P&gt;&lt;P&gt;why is the excel file not written?&lt;/P&gt;&lt;P&gt;this problem in only when we are using it within a batch job using automic 4.&lt;/P&gt;&lt;P&gt;Nicolet&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 07:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/710506#M37969</guid>
      <dc:creator>nwitlou</dc:creator>
      <dc:date>2021-01-11T07:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/710516#M37970</link>
      <description>&lt;P&gt;You can't start Excel on AIX. Excel is Windows-only.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 10:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Batch-Export-to-Excel/m-p/710516#M37970</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-01-11T10:32:18Z</dc:date>
    </item>
  </channel>
</rss>

