<?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 can I export several tables in 2 differents sheets of an excel document with ods (2 in each) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447188#M20655</link>
    <description>&lt;P&gt;That leaves me at a loss.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason, you seem to be getting a "sheet_interval='now' " after the third Proc Report (keeping the same sheet name, so Excel is giving you the suffix "2" to the name).&amp;nbsp; There is nothing in the code that I see could cause that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It really -- REALLY -- should not be because Excel is seeing the sheet as filled (max number of rows is over a million; columns go out to something like xva, over 16,000).&amp;nbsp; That is why I believe you are actually getting the command through SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just so you can see what is happening here, I am attaching the Program&amp;nbsp;-- 99+% yours -- and Excel output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
    <pubDate>Tue, 20 Mar 2018 16:31:58 GMT</pubDate>
    <dc:creator>DocSteve</dc:creator>
    <dc:date>2018-03-20T16:31:58Z</dc:date>
    <item>
      <title>How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447067#M20647</link>
      <description>&lt;P&gt;I am trying to export several tables to an excel sheet in a concrete format with ods. I want to export 2 tables in one sheet and 2 tables in a second sheet without changing of document, but I am unable to do it with ods.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried the option (sheet_interval = "now") but it export me every single table after it in one sheet and I want 2 tables in that second sheet.&lt;BR /&gt;&lt;BR /&gt;Here I left what I want to export.&lt;BR /&gt;&lt;BR /&gt;Thank you &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title;
options nocenter;
ods excel file="c:\temp\sample.xlsx"
  options(  sheet_interval= 'none'  sheet_name="tables1_2"  embedded_titles= 'on'  );

	title "Table 1";
		proc report data=RWORK.Table1
			style(header)=[JUST = center FONT_FACE=Arial FONT_SIZE=10pt background = lightblue];
			column col1 col2 ;
			define col1/ 'Column 1';
			define col2/ 'Column 2';
			define col1 / style(column) = {JUST=c FONT_FACE=Arial
					FONT_SIZE=10pt ASIS=on};
			define col2 / style(column) = {JUST=c FONT_FACE=Arial
					FONT_SIZE=10pt ASIS=on};
		run;

	title  "Table 2";
		proc report data=RWORK.Table2
				style(header)=[JUST = center FONT_FACE=Arial FONT_SIZE=10pt background = lightblue];
				column col1 col2 ;
				define col1/ 'Column 1';
				define col2/ 'Column 2';
				define col1 / style(column) = {JUST=c FONT_FACE=Arial
						FONT_SIZE=10pt ASIS=on};
				define col2 / style(column) = {JUST=c FONT_FACE=Arial
						FONT_SIZE=10pt ASIS=on};
			run;

ods excel
  options( sheet_interval= 'now'  sheet_name="tables3_4"  );

	title "Table 3";
		proc report data=RWORK.Table3
			style(header)=[JUST = center FONT_FACE=Arial FONT_SIZE=10pt background = lightblue];
			column col1 col2 ;
			define col1/ 'Column 1';
			define col2/ 'Column 2';
			define col1 / style(column) = {JUST=c FONT_FACE=Arial
					FONT_SIZE=10pt ASIS=on};
			define col2 / style(column) = {JUST=c FONT_FACE=Arial
					FONT_SIZE=10pt ASIS=on};
		run;

	title "Table 4";
		proc report data=RWORK.Table4
			style(header)=[JUST = center FONT_FACE=Arial FONT_SIZE=10pt background = lightblue];
			column col1 col2 ;
			define col1/ 'Column 1';
			define col2/ 'Column 2';
			define col1 / style(column) = {JUST=c FONT_FACE=Arial
					FONT_SIZE=10pt ASIS=on};
			define col2 / style(column) = {JUST=c FONT_FACE=Arial
					FONT_SIZE=10pt ASIS=on};
		run;

title;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Mar 2018 12:29:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447067#M20647</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-20T12:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447094#M20648</link>
      <description>&lt;P&gt;Try add some code in the middle of code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; FONT_SIZE&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;10&lt;/SPAN&gt;&lt;SPAN&gt;pt ASIS&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;on&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt; &lt;SPAN class="token statement"&gt;ods&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;excel&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;options&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;sheet_interval&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'proc'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="token statement"&gt;ods&lt;/SPAN&gt; &lt;SPAN class="token statement"&gt;select&lt;/SPAN&gt; none&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;print&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;sashelp&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="token statement"&gt;ods&lt;/SPAN&gt; &lt;SPAN class="token statement"&gt;select&lt;/SPAN&gt; all&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token statement"&gt;ods&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;excel&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;options&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN&gt; sheet_interval&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'now'&lt;/SPAN&gt;&lt;SPAN&gt; sheet_name&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"tables3_4"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token statement"&gt;title&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"Table 3"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;report&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;RWORK&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Table3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 13:55:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447094#M20648</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-03-20T13:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447095#M20649</link>
      <description>&lt;P&gt;Hi Marta27,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I understand you correctly, you want Proc Report output for datasets 1 and 2 on the first worksheet and for datasets 3 and 4 on the second worksheet?&amp;nbsp; That is exactly what I just got when I roughed-out four data files as input and ran your program, colors, font, everything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running 9.4, TS1 M5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 13:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447095#M20649</guid>
      <dc:creator>DocSteve</dc:creator>
      <dc:date>2018-03-20T13:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447159#M20651</link>
      <description>&lt;P&gt;What should I obtain writing that code in the middle? That code doesn't make difference in my result. Was it suppose to print me another table?&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:16:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447159#M20651</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-20T15:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447162#M20652</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;I am using SAS 9.4 TS1M3, and that's exactly what I want. But, when I run my code I obtain datasets 1 and 2 on the first worksheet, dataset 3 on the second worksheet and dataset 4 on the third worksheet. I don't know how to obtain them just in 2 sheets.&lt;/P&gt;&lt;P&gt;Thank you , &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:19:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447162#M20652</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-20T15:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447171#M20653</link>
      <description>&lt;P&gt;Hi Marta 27,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The versions of SAS are essentially identical, yet we get different results (mine being the ones you want), so something else is different besides the capabilities of the SAS Software (assuming no major changes between M3 and M5).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, be sure that the example you posted is the&amp;nbsp;&lt;EM&gt;exactly the same&lt;/EM&gt; as what you ran (I made no changes except to change the libref for the input datasets).&amp;nbsp; My datasets are probably&amp;nbsp;&lt;EM&gt;much&lt;/EM&gt; different from yours, but given the output that should be no issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second,&amp;nbsp;I cannot imagine anything in MS-Excel that would fail here, but what are the names of your worksheets?&amp;nbsp; You want one worksheet named "tables1_2" and a second one named "tables3_4" and you are getting a third one, too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 15:32:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447171#M20653</guid>
      <dc:creator>DocSteve</dc:creator>
      <dc:date>2018-03-20T15:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447184#M20654</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;Yes I am using exactly the same code I posted, the names of the sheets are also the posted, the third one that's appear it is called "tables3_4 2". I don't really understand why we obtain different results with the same code. I have even copy the code I posted and changed just the datasets when I read your first message, just in case I had written something different.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Marta&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:01:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447184#M20654</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-20T16:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447188#M20655</link>
      <description>&lt;P&gt;That leaves me at a loss.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason, you seem to be getting a "sheet_interval='now' " after the third Proc Report (keeping the same sheet name, so Excel is giving you the suffix "2" to the name).&amp;nbsp; There is nothing in the code that I see could cause that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It really -- REALLY -- should not be because Excel is seeing the sheet as filled (max number of rows is over a million; columns go out to something like xva, over 16,000).&amp;nbsp; That is why I believe you are actually getting the command through SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just so you can see what is happening here, I am attaching the Program&amp;nbsp;-- 99+% yours -- and Excel output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:31:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447188#M20655</guid>
      <dc:creator>DocSteve</dc:creator>
      <dc:date>2018-03-20T16:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447190#M20656</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/196349"&gt;@Marta27&lt;/a&gt;: My guess is it is due to the version you're using (i.e., M3 rather than M5).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code includes sheet_interval='now' but, according to the documentation:&lt;/P&gt;
&lt;DIV id="p0jxfy6rb5i52pn13nnyzkugs6yn" class="xis-paragraph"&gt;The ODS EXCEL statement was introduced in&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-codeFocus"&gt;SAS 9.4M3&lt;/SPAN&gt;.&lt;/DIV&gt;
&lt;DIV id="p10tygy76zg3san15vrf1os7cpe6" class="xis-paragraph"&gt;In&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-codeFocus"&gt;SAS 9.4M5&lt;/SPAN&gt;, the ODS EXCEL statement supports the following options:
&lt;DIV class="xis-listTermDef"&gt;
&lt;DIV id="n196ejxftp1q8sn17c2wp3g2jm9a" class="xis-termDefPair"&gt;
&lt;DIV class="xis-xrefTerm"&gt;&lt;A class="ng-scope" tabindex="0" title="(SHEET_INTERVAL= 'BYGROUP' | 'PAGE'
| 'PROC' | 'NONE' | 'NOW' | TABLE’)" href="http://documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p09n5pw9ol0897n1qe04zeur27rv.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n14kzx0j3pmce9n1eysz6cco2sqn" rel="nofollow" data-docset-id="odsug" data-docset-version="9.4" data-original-href="p09n5pw9ol0897n1qe04zeur27rv.htm#n14kzx0j3pmce9n1eysz6cco2sqn"&gt;SHEET_INTERVAL= "NOW"&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="xis-definition"&gt;
&lt;DIV class="xis-paraSimpleFirst"&gt;creates a new worksheet.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="p1hn6faiqtyrfbn1ttaklbd2t01w" class="xis-termDefPair"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="xis-termDefPair"&gt;Art, CEO, AnalystFinder.com&lt;/DIV&gt;
&lt;DIV class="xis-termDefPair"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Mar 2018 16:40:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447190#M20656</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-03-20T16:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447223#M20658</link>
      <description>&lt;P&gt;Whoops!&amp;nbsp; Thanks for the catch.&amp;nbsp; My assumption above was quite wrong&amp;nbsp;&lt;EM&gt;viz-a-viz&lt;/EM&gt; M3 and M5.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 18:39:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447223#M20658</guid>
      <dc:creator>DocSteve</dc:creator>
      <dc:date>2018-03-20T18:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447337#M20663</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;Thank you very much! Your code is exactly as mine and you obtain what I want although it doesn't work for me.&lt;/P&gt;&lt;P&gt;My tables are of 2 rows and 4 columns so I don't think the excel limits is a problem.&lt;/P&gt;&lt;P&gt;As Art297 said probably are the versions.&lt;/P&gt;&lt;P&gt;Than you&lt;/P&gt;&lt;P&gt;Marta&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 07:22:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447337#M20663</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-21T07:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447339#M20664</link>
      <description>&lt;P&gt;Thank you very much! I didn't get why it worked for Steve and not for me &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 07:26:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447339#M20664</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-21T07:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447734#M20667</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;: Do you know if there is a way to obtain what I want in in SAS 9.4M3?</description>
      <pubDate>Thu, 22 Mar 2018 12:10:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447734#M20667</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-22T12:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447750#M20669</link>
      <description>&lt;P&gt;If you're on a Window's-based system, you could use the macro you can find at:&amp;nbsp;&lt;A href="http://www.sascommunity.org/wiki/Excelling_to_Another_Level_with_SAS" target="_blank"&gt;http://www.sascommunity.org/wiki/Excelling_to_Another_Level_with_SAS&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, to do what you want, you'd need to know the upper left cell location of the rectangle where you want the second file placed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 12:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447750#M20669</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-03-22T12:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export several tables in 2 differents sheets of an excel document with ods (2 in each)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447822#M20671</link>
      <description>Thank you very much &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Thu, 22 Mar 2018 15:18:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-can-I-export-several-tables-in-2-differents-sheets-of-an/m-p/447822#M20671</guid>
      <dc:creator>Marta27</dc:creator>
      <dc:date>2018-03-22T15:18:33Z</dc:date>
    </item>
  </channel>
</rss>

