<?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: Multiple Reports in a single tab, repeated in multiple tabs in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260129#M15508</link>
    <description>&lt;P&gt;Try Sheet_interval = "Proc"&lt;/P&gt;</description>
    <pubDate>Wed, 30 Mar 2016 14:56:17 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-03-30T14:56:17Z</dc:date>
    <item>
      <title>Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260123#M15507</link>
      <description>&lt;P&gt;I'm doing something that I was hoping would be straightforward, but I'm finding it difficult to get to the "right" answer.&amp;nbsp; I have a report that I'm creating for a hospital system.&amp;nbsp; The report consists of 4 separate proc report statements.&amp;nbsp; I am able to put them all on one tab for a single facility.&amp;nbsp; However, when I try to have each set of 4 reports into separate tabs of the same workbook, I can't figure out which option I need to use.&amp;nbsp; My current workaround is to have each tab written out as separate worksheets.&amp;nbsp; This requires me to put it back together manually, which I would like to avoid.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The tagset statement I"m using is:&lt;/P&gt;
&lt;P&gt;ods tagsets.ExcelXP file="&amp;amp;datadir\&amp;amp;hosp..xml"&lt;BR /&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style = printer&lt;BR /&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; options(embedded_titles='yes'&lt;BR /&gt;&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;&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; sheet_interval='none'&lt;BR /&gt;&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; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;skip_space='0,0,0,1,1'&lt;BR /&gt;&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; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;sheet_name="&amp;amp;hospname"&lt;BR /&gt;&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;&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; /*doc='help'*/)&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm open to all suggestions.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2016 14:42:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260123#M15507</guid>
      <dc:creator>chimanbj</dc:creator>
      <dc:date>2016-03-30T14:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260129#M15508</link>
      <description>&lt;P&gt;Try Sheet_interval = "Proc"&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2016 14:56:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260129#M15508</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-03-30T14:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260132#M15509</link>
      <description>&lt;P&gt;You can change control the breaks with options and sheet_interval.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods tagsets.excelxp file='C:\_localdata\sample.xml' options(sheet_interval='none') style=meadow;

proc freq data=sashelp.class;
table age;
table sex;
run;

ods tagsets.excelxp options(sheet_interval='none' sheet_label='Test');

proc means data=sashelp.class;
run;

ods tagsets.excelxp close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2016 15:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260132#M15509</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-30T15:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260151#M15510</link>
      <description>&lt;P&gt;Thanks for your reply.&amp;nbsp; This gave me interesting results.&amp;nbsp; Indeed, two tabs were created, but the tabs were labeled "Job 1 - Freq" and "Test 2 - Means"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure where SAS is getting those names...&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2016 16:28:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260151#M15510</guid>
      <dc:creator>chimanbj</dc:creator>
      <dc:date>2016-03-30T16:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260152#M15511</link>
      <description>&lt;P&gt;There are tagsets options (Sheet_name, Sheet_label) to control the excel tab names...I didn't attempt to change them as that was not your question.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2016 16:32:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260152#M15511</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-30T16:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260153#M15512</link>
      <description>&lt;P&gt;Sheet_name works fine for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods tagsets.excelxp file='C:\_localdata\sample.xml' options(sheet_interval='none' sheet_name='Test1') style=meadow;

proc freq data=sashelp.class;
table age;
table sex;
run;

ods tagsets.excelxp options(sheet_interval='none' sheet_name='Test2');

proc means data=sashelp.class;
run;

ods tagsets.excelxp close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Mar 2016 16:33:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260153#M15512</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-30T16:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Reports in a single tab, repeated in multiple tabs</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260537#M15514</link>
      <description>&lt;P&gt;The sheet_interval along with the sheet_name is what makes it work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks so much!!!&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 20:08:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-Reports-in-a-single-tab-repeated-in-multiple-tabs/m-p/260537#M15514</guid>
      <dc:creator>chimanbj</dc:creator>
      <dc:date>2016-03-31T20:08:36Z</dc:date>
    </item>
  </channel>
</rss>

