<?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: tagsets.ExcelXP align and wrap in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76838#M8728</link>
    <description>Which version of the Excelxp tagset are you using?&lt;BR /&gt;
&lt;BR /&gt;
It should say in the log.  If it doesn't say, then it is very old.&lt;BR /&gt;
&lt;BR /&gt;
You can get the latest tagset here.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/&lt;/A&gt;</description>
    <pubDate>Wed, 11 Mar 2009 16:39:48 GMT</pubDate>
    <dc:creator>Eric_SAS</dc:creator>
    <dc:date>2009-03-11T16:39:48Z</dc:date>
    <item>
      <title>tagsets.ExcelXP align and wrap</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76837#M8727</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I'm creating an Excel sheet using the ODS tagsets.ExcelXP.&lt;BR /&gt;
&lt;BR /&gt;
But two things just won't work....&lt;BR /&gt;
&lt;BR /&gt;
First the alignment of cells. Example:&lt;BR /&gt;
[PRE]&lt;BR /&gt;
PROC REPORT DATA=sashelp.class ;&lt;BR /&gt;
  COLUMN _ALL_ ;&lt;BR /&gt;
  DEFINE sex /STYLE(COLUMN)=[just=center] ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
[/PRE]&lt;BR /&gt;
The style element "just=center" does nothing in the Excel sheet.&lt;BR /&gt;
&lt;BR /&gt;
Second the wrapping of cells. It's standard with the column headers but not within a table.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone help me with this?&lt;BR /&gt;
&lt;BR /&gt;
Thnx,&lt;BR /&gt;
Thierry</description>
      <pubDate>Wed, 11 Mar 2009 08:48:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76837#M8727</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-03-11T08:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets.ExcelXP align and wrap</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76838#M8728</link>
      <description>Which version of the Excelxp tagset are you using?&lt;BR /&gt;
&lt;BR /&gt;
It should say in the log.  If it doesn't say, then it is very old.&lt;BR /&gt;
&lt;BR /&gt;
You can get the latest tagset here.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/&lt;/A&gt;</description>
      <pubDate>Wed, 11 Mar 2009 16:39:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76838#M8728</guid>
      <dc:creator>Eric_SAS</dc:creator>
      <dc:date>2009-03-11T16:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets.ExcelXP align and wrap</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76839#M8729</link>
      <description>Hi:&lt;BR /&gt;
  When I run this code:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods tagsets.excelxp file='c:\temp\try_cntr.xls'&lt;BR /&gt;
                    style=sasweb&lt;BR /&gt;
                    options(absolute_column_width="20,15,15" doc="Help");&lt;BR /&gt;
&lt;BR /&gt;
  proc report data=sashelp.class nowd&lt;BR /&gt;
     style(column)={just=center};&lt;BR /&gt;
    column name age height;&lt;BR /&gt;
  run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelxp close;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                           &lt;BR /&gt;
I do see centering (in Excel 2007). Sometimes, you have to make the columns "bigger" in order to see the impact of centering. &lt;BR /&gt;
I am running the version of the ExcelXP tagset template dated:&lt;BR /&gt;
[pre]&lt;BR /&gt;
NOTE: This is the Excel XP tagset (SAS 9.1.3, v1.75, 07/26/07). Add options&lt;BR /&gt;
(doc='help') to the ods statement for more information.&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
        &lt;BR /&gt;
(from my SAS log)&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 11 Mar 2009 19:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76839#M8729</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-03-11T19:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets.ExcelXP align and wrap</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76840#M8730</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for your reply.&lt;BR /&gt;
&lt;BR /&gt;
When I run Cynthia's code the centering doesn't work.&lt;BR /&gt;
I guess it's because the old version of the tagsets I'm using.&lt;BR /&gt;
&lt;BR /&gt;
I'm using the version:&lt;BR /&gt;
[pre]&lt;BR /&gt;
NOTE: This is the Excel XP tagset (SAS 9.1.3, v1.28, 08/29/05). Add options(doc='help') to the ods statement for more information.&lt;BR /&gt;
[/pre]&lt;BR /&gt;
I'll update the Tagset and try again.&lt;BR /&gt;
&lt;BR /&gt;
The wrapping of cells? Is there an option for?&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
Thierry

Message was edited by: TH</description>
      <pubDate>Thu, 12 Mar 2009 07:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-align-and-wrap/m-p/76840#M8730</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-03-12T07:26:09Z</dc:date>
    </item>
  </channel>
</rss>

