<?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: Exporting to Excel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142590#M296802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are on Windows the answer is yes!&amp;nbsp; Download the macro from the page at:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" title="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The paper describes implementing the macro as a menu item in your SAS explorer window but, for what you want to do, you could just run the macro by itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would either have to use the same filename for all 10 output datasets or you would have to modify the macro, slightly, to specify a single output file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the workbook doesn't exist yet, you would create it by calling the macro as follows: %exportxl(libname, filename,S,Y,N)&lt;/P&gt;&lt;P&gt;where you would replace libname and filename with your libname and your filename.&amp;nbsp; The macro, in turn, would create a workbook in the path specified by the libname, and with a filename that matches your filename (but with an xlsx extension), and a worksheet with the same name as your filename, beginning in cell A1, and starting with a row containing variable names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, for the other nine tables, you would call the macro as follows: %exportxl(libname, filename,A,Y,Y)&lt;/P&gt;&lt;P&gt;where you would replace libname and filename with your libname and your filename.&amp;nbsp; The macro, in turn, would open the workbook in the path specified by the libname, and with a filename that matches your filename (but with an xlsx extension) and, in the worksheet with the same name as your filename, beginning in cell that you would specify when prompted, and starting with a row containing variable names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro was written by Tom Abernathy, FriedEgg and myself and is going to be presented at the upcoming SGF on Wednesday, March 26th, 2014.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2014 13:44:36 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2014-03-13T13:44:36Z</dc:date>
    <item>
      <title>Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142585#M296797</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;Is there a way to export multiple tables in one excel spreadsheet? For instance, I run 10 regressions and I would like to put all 10 R-Square table in the same sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 12:36:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142585#M296797</guid>
      <dc:creator>NickAnt</dc:creator>
      <dc:date>2014-03-13T12:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142586#M296798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Easiest way is ods tagset:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file=xxx;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then before each proc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(sheet_name="yyyy");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then at end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagset.excelxp close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:30:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142586#M296798</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-03-13T13:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142587#M296799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can run a static number of export statements:&lt;/P&gt;&lt;P&gt;PROC EXPORT DATA=dataset1 &lt;BR /&gt;OUTFILE= "&amp;amp;path\filename.xls" &lt;BR /&gt;DBMS=EXCEL REPLACE; &lt;BR /&gt;LABEL; &lt;BR /&gt;SHEET="tab_name1"; &lt;BR /&gt;RUN; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC EXPORT DATA=dataset1 &lt;BR /&gt;OUTFILE= "&amp;amp;path\filename.xls" &lt;BR /&gt;DBMS=EXCEL REPLACE; &lt;BR /&gt;LABEL; &lt;BR /&gt;SHEET="tab_name1"; &lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, there other methods that use macros and tagset to produce multiple sheets just from one dataset.&lt;/P&gt;&lt;P&gt;&lt;CITE class="_md"&gt;&lt;A class="jive-link-external-small" href="https://support"&gt;https://support&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;STRONG&gt;sas&lt;/STRONG&gt;.com/resources/papers/proceedings12/150-2012.pdf&lt;/CITE&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/Automatically_Separating_Data_into_Excel_Sheets"&gt;http://www.sascommunity.org/wiki/Automatically_Separating_Data_into_Excel_Sheets&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:31:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142587#M296799</guid>
      <dc:creator>danbohac</dc:creator>
      <dc:date>2014-03-13T13:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142588#M296800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you RW9, but does this put multiple outputs in the same sheet?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:32:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142588#M296800</guid>
      <dc:creator>NickAnt</dc:creator>
      <dc:date>2014-03-13T13:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142589#M296801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you would just have:&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file=xxx;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(sheet_name="yyyy");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc one&lt;/P&gt;&lt;P&gt;proc two&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagset.excelxp close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note I will actually test this later but in theory should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:40:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142589#M296801</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-03-13T13:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142590#M296802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are on Windows the answer is yes!&amp;nbsp; Download the macro from the page at:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" title="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The paper describes implementing the macro as a menu item in your SAS explorer window but, for what you want to do, you could just run the macro by itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would either have to use the same filename for all 10 output datasets or you would have to modify the macro, slightly, to specify a single output file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the workbook doesn't exist yet, you would create it by calling the macro as follows: %exportxl(libname, filename,S,Y,N)&lt;/P&gt;&lt;P&gt;where you would replace libname and filename with your libname and your filename.&amp;nbsp; The macro, in turn, would create a workbook in the path specified by the libname, and with a filename that matches your filename (but with an xlsx extension), and a worksheet with the same name as your filename, beginning in cell A1, and starting with a row containing variable names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, for the other nine tables, you would call the macro as follows: %exportxl(libname, filename,A,Y,Y)&lt;/P&gt;&lt;P&gt;where you would replace libname and filename with your libname and your filename.&amp;nbsp; The macro, in turn, would open the workbook in the path specified by the libname, and with a filename that matches your filename (but with an xlsx extension) and, in the worksheet with the same name as your filename, beginning in cell that you would specify when prompted, and starting with a row containing variable names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro was written by Tom Abernathy, FriedEgg and myself and is going to be presented at the upcoming SGF on Wednesday, March 26th, 2014.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:44:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142590#M296802</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-03-13T13:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142591#M296803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To add to my post, you need to have the option sheet_interval='none'&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file=xxx;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(sheet_name="yyyy" sheet_interval='none');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc one&lt;/P&gt;&lt;P&gt;proc two&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagset.excelxp close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 13:46:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142591#M296803</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-03-13T13:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142592#M296804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Throwing it out as a suggestion.&amp;nbsp; If the 10 tables have the same variables, can you just set them on top of one another?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have1 have2 have3 .. have10;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can maybe add a variable that distinguishes the different tables in the list.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then just proc export 'want' into a single excel sheet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 17:29:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142592#M296804</guid>
      <dc:creator>joedunlavy</dc:creator>
      <dc:date>2014-03-13T17:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142593#M296805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Combined with ODS Select you can get closer to your requirements. Though if you want to customize the tables then there are better ways &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file="C:\_localdata\sample.xml" sytle=journal options(embedded_titles='yes' sheet_interval='none' sheet_name="Example");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title 'Class Model';&lt;/P&gt;&lt;P&gt;ods select FitStatistics;&lt;/P&gt;&lt;P&gt;proc reg data=sashelp.class;&lt;/P&gt;&lt;P&gt;model weight=height age;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title 'Car Model';&lt;/P&gt;&lt;P&gt;ods select FitStatistics;&lt;/P&gt;&lt;P&gt;proc reg data=sashelp.cars;&lt;/P&gt;&lt;P&gt;model mpg_city=weight enginesize cylinders horsepower;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 17:46:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142593#M296805</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-13T17:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142594#M296806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the answer! I follow you directions very precisely, but every time I run the macro the second time, SAS crushes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you experienced that? What can I do to remedy it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 21:02:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142594#M296806</guid>
      <dc:creator>NickAnt</dc:creator>
      <dc:date>2014-03-13T21:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142595#M296807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My initial guess is that there is a problem in how you called the macro.&amp;nbsp; However, while we never thought of making the macro available as a stand alone macro, we never thought the problem through.&amp;nbsp; This afternoon I did make a stand alone version.&amp;nbsp; Give me a couple of minutes and I 'll provide a link to the stand alone macro and instructions on how to call it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 21:23:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142595#M296807</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-03-13T21:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142596#M296808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The new stand alone version of the macro can be found at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/mwiki/images/c/c9/1793-2014a.sas" title="http://www.sascommunity.org/mwiki/images/c/c9/1793-2014a.sas"&gt;http://www.sascommunity.org/mwiki/images/c/c9/1793-2014a.sas&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro has 7 named parameters, 5 of which have default values thus don't need to be included unless you want to change their values.&amp;nbsp; The macro declaration reads as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro exportxlsx(data=, outfile=, sheet=Sheet1, type=S, usenames=YES, range=A1, replace=YES);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the following example, I first create a workbook called c:\art\classtest, with a worksheet called test and containing a copy of sashelp.class, with the first row containing variable names, and rows 2 thru 20 containing the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the example's second call of the macro, I add another copy of sashelp.class, again in sheet test, but this time starting in cell a22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%exportxlsx(data=sashelp.class,&lt;/P&gt;&lt;P&gt;&amp;nbsp; outfile=c:\art\classtest.xlsx,&lt;/P&gt;&lt;P&gt;&amp;nbsp; type=S,&lt;/P&gt;&lt;P&gt;&amp;nbsp; sheet=test)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%exportxlsx(data=sashelp.class,&lt;/P&gt;&lt;P&gt;&amp;nbsp; outfile=c:\art\classtest.xlsx&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; type=A,&lt;/P&gt;&lt;P&gt;&amp;nbsp; sheet=test,&lt;/P&gt;&lt;P&gt;&amp;nbsp; range=a22)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me/us know if that works for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 21:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142596#M296808</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-03-13T21:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142597#M296809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur, I run the macro as instructed and SAS crushes with the first try, which is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;%exportxlsx(data=work.test5,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; outfile=c:\nick\Dropbox\test,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; type=S,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; sheet=testa)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 22:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142597#M296809</guid>
      <dc:creator>NickAnt</dc:creator>
      <dc:date>2014-03-13T22:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142598#M296810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my fault.&amp;nbsp; list the outfile as c:\nick\&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Dropbox\test.xlsx,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll change that on my post as well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 23:12:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142598#M296810</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-03-13T23:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142599#M296811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur, it still crushes SAS. I will try tomorrow using "&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;c:\nick\&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Dropbox\test.xlsx"&amp;nbsp; instead of &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;c:\nick\&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Dropbox\test.xlsx and let you know how it goes. Thank you for your time and effort!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 23:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142599#M296811</guid>
      <dc:creator>NickAnt</dc:creator>
      <dc:date>2014-03-13T23:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142600#M296812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to resolve the matter before I present the macro at SGF in a week and a half.&amp;nbsp; Please contact me, offline tomorrow, at:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:atabachneck@gmail.com"&gt;atabachneck@gmail.com&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp; I didn't understand your last message as you said that you'd use:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;c:\nick\&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Dropbox\test.xlsx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;instead of&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;c:\nick\&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Dropbox\test.xlsx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;They look the same to me.&amp;nbsp; I tested the macro, before posting it, thus would really like to figure out what the problem is.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Art&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 00:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142600#M296812</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-03-14T00:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142601#M296813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For anyone who has been following this thread, the 'need' that Nikolaos had caused us to revise the macro we had written so that it would be useful both as an action command from the SAS Explorer window and as a macro that one can call from either base SAS or EG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plus, in the process of accomplishing those modifications, we decided to expand it to include the capabilities of:&lt;/P&gt;&lt;P&gt; 1. including a variable name header row than can display either variable names or variable labels&lt;/P&gt;&lt;P&gt; 2. including the abilities to either create a new workbook, add a worksheet to an existing workbook&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;3. copy a table to a range of either a new Workbook, an existing worksheet, or a new worksheet&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The published paper, unfortunately, won't reflect the updated code, but the code,powerpoint and updated paper can all be downloaded from:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export#Revision_History" title="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export#Revision_History"&gt;A Poor/Rich SAS Users Proc Export - sasCommunity&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, many thanks to Nokolaos as, while we were trying to help him, he helped us by testing the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Art&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 22:25:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142601#M296813</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-03-17T22:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142602#M296814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to help and, of course, to be helped! It is a very good piece of work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 22:38:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-to-Excel/m-p/142602#M296814</guid>
      <dc:creator>NickAnt</dc:creator>
      <dc:date>2014-03-17T22:38:18Z</dc:date>
    </item>
  </channel>
</rss>

