<?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 Changing sheet counter in excel output (from ods tagsets.excelxp) in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203365#M50756</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;I'd like to change the default number of the sheets when I use tagsets.excelxp with a proc tabulate and different table instructions inside.&lt;/P&gt;&lt;P&gt;I'd like to avoid the alternative way to create many proc tabulate as many tables I have to do...&lt;/P&gt;&lt;P&gt;Is there any option/code to do it?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jun 2015 13:29:25 GMT</pubDate>
    <dc:creator>Daniela_P</dc:creator>
    <dc:date>2015-06-11T13:29:25Z</dc:date>
    <item>
      <title>Changing sheet counter in excel output (from ods tagsets.excelxp)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203365#M50756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;I'd like to change the default number of the sheets when I use tagsets.excelxp with a proc tabulate and different table instructions inside.&lt;/P&gt;&lt;P&gt;I'd like to avoid the alternative way to create many proc tabulate as many tables I have to do...&lt;/P&gt;&lt;P&gt;Is there any option/code to do it?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 13:29:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203365#M50756</guid>
      <dc:creator>Daniela_P</dc:creator>
      <dc:date>2015-06-11T13:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Changing sheet counter in excel output (from ods tagsets.excelxp)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203366#M50757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry you will need to be clearer in your description, I am not understanding what you mean by "default number" of sheets?&amp;nbsp; Specify what you are doing with code and required output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 14:15:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203366#M50757</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-06-11T14:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing sheet counter in excel output (from ods tagsets.excelxp)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203367#M50758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is when I write a lot of table inside the same proc tabulate (within an ods tagsets.excelxp output):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp path="C:\Tables" file="table1.xml";&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options (sheet_interval="table");&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options (sheet_name="table 1");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc tabulate data=sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLASS age sex height weight;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE&amp;nbsp; age,sex*(n=''*F=9.)/rts=40;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE&amp;nbsp; height,sex*(n=''*F=9.)/rts=40;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE&amp;nbsp; weight,sex*(n=''*F=9.)/rts=40;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options (sheet_name="table 2");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc tabulate data=sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where age=15;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLASS age sex height weight;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE&amp;nbsp; age,sex*(n=''*F=9.)/rts=40;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE&amp;nbsp; height,sex*(n=''*F=9.)/rts=40;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE&amp;nbsp; weight,sex*(n=''*F=9.)/rts=40;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;ods _all_ close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default sas names the sheets of the first proc: table 1 , table 1 2, table 1 3 and the sheets of the second proc: table 2, table 2 2, table 2 3.&lt;/P&gt;&lt;P&gt;I'd like, instead: table 1.1 , table 1.2, table 1.3 and table 2.1 , table 2.2, table 2.3.&lt;/P&gt;&lt;P&gt;So it should begin from number 1 in the first sheet (instead of writing nothing) and&amp;nbsp; it should put "." instead of the space between the name and the counter.&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 13:05:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203367#M50758</guid>
      <dc:creator>Daniela_P</dc:creator>
      <dc:date>2015-06-18T13:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing sheet counter in excel output (from ods tagsets.excelxp)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203368#M50759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; I am not sure you can get ODS to use a '.' instead of a space, but you can use the sheet_name and sheet_label suboptions to have some control over the table. Switching your code to SAS Macro might be one approach. I am not sure whether you can change the tagset template for ExcelXP to alter the way it makes sheet names or not. That would be a question for Tech Support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 14:28:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Changing-sheet-counter-in-excel-output-from-ods-tagsets-excelxp/m-p/203368#M50759</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-06-18T14:28:14Z</dc:date>
    </item>
  </channel>
</rss>

