<?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 left align TOC in tagsets.excelXP in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5954#M2400</link>
    <description>for the html destination usage note 23395 shows how to left align all info in the Table of Contents (http://support.sas.com/kb/23/395.html). &lt;BR /&gt;
Is there any prospect of getting something like this working for tagsets.excelXP ?&lt;BR /&gt;
&lt;BR /&gt;
PeterC</description>
    <pubDate>Tue, 18 Dec 2007 14:52:17 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2007-12-18T14:52:17Z</dc:date>
    <item>
      <title>left align TOC in tagsets.excelXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5954#M2400</link>
      <description>for the html destination usage note 23395 shows how to left align all info in the Table of Contents (http://support.sas.com/kb/23/395.html). &lt;BR /&gt;
Is there any prospect of getting something like this working for tagsets.excelXP ?&lt;BR /&gt;
&lt;BR /&gt;
PeterC</description>
      <pubDate>Tue, 18 Dec 2007 14:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5954#M2400</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-12-18T14:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: left align TOC in tagsets.excelXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5955#M2401</link>
      <description>The index=yes option will create a left aligned index of worksheets in the first worksheet.&lt;BR /&gt;
&lt;BR /&gt;
Is that what you want?&lt;BR /&gt;
&lt;BR /&gt;
Eric</description>
      <pubDate>Wed, 19 Dec 2007 14:58:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5955#M2401</guid>
      <dc:creator>Eric_SAS</dc:creator>
      <dc:date>2007-12-19T14:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: left align TOC in tagsets.excelXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5956#M2402</link>
      <description>Thank you, &lt;BR /&gt;
that index= yes option provides a great start.&lt;BR /&gt;
It condenses the links into just one column.&lt;BR /&gt;
&lt;BR /&gt;
ODS allows the statement option Contents=  and statement ODS ProcLabel=  to customize text in a ToC. It would be nice if this was also used on the Worksheets tab created by Index='yes'.&lt;BR /&gt;
 &lt;BR /&gt;
The big feature is the ability to control text on a ToC&lt;BR /&gt;
&lt;BR /&gt;
I used this model code to show the comparison[pre]&lt;BR /&gt;
ods _all_ close ;   &lt;BR /&gt;
ods tagsets.excelxp file=odsout( url=none) rs=none &lt;BR /&gt;
      options(index='yes' contents='yes' &lt;BR /&gt;
        Embedded_Titles='YES' Embed_Titles_Once='No' )&lt;BR /&gt;
    ;&lt;BR /&gt;
title 'class' ;&lt;BR /&gt;
proc sort data= sashelp.class out= class; by sex ;&lt;BR /&gt;
title2 j=r 'class in page dim';&lt;BR /&gt;
ods tagsets.excelxp options( sheet_name='ClassTable' );&lt;BR /&gt;
ods proclabel='A';&lt;BR /&gt;
proc tabulate format= best5. contents='2';&lt;BR /&gt;
   var    height weight ;&lt;BR /&gt;
   class  age   sex  ;&lt;BR /&gt;
   table  age all, mean*( height weight )&lt;BR /&gt;
   				/  contents= '3' ;&lt;BR /&gt;
run;   				&lt;BR /&gt;
title2 j=r 'by statements' ;&lt;BR /&gt;
ods tagsets.excelxp options( sheet_name='PageBy' );&lt;BR /&gt;
ods proclabel='B';&lt;BR /&gt;
proc tabulate format= best5. contents='4';&lt;BR /&gt;
   var    height weight ;&lt;BR /&gt;
   class  age   sex  ;&lt;BR /&gt;
   table  sex all&lt;BR /&gt;
        , age all, mean*( height weight )&lt;BR /&gt;
   			/  contents= '5' ;&lt;BR /&gt;
   by sex ;&lt;BR /&gt;
run;&lt;BR /&gt;
title2 j=r 'proc print' ;&lt;BR /&gt;
ods tagsets.excelxp options( sheet_name='ListBy' );&lt;BR /&gt;
ods proclabel='P';&lt;BR /&gt;
proc print contents='6'; by sex ; run;&lt;BR /&gt;
ods _all_ close ; [/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Appreciating the support&lt;BR /&gt;
&lt;BR /&gt;
PeterC</description>
      <pubDate>Wed, 19 Dec 2007 15:40:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/left-align-TOC-in-tagsets-excelXP/m-p/5956#M2402</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-12-19T15:40:05Z</dc:date>
    </item>
  </channel>
</rss>

