<?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 What attributes can be changed in ExcelXP in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/940#M456</link>
    <description>Hi All:&lt;BR /&gt;
&lt;BR /&gt;
I'm using the ExcelXP tagset to create a number of multi-tab spreadsheets.  The user has some very specific design requirements for these and I am having some problems getting them just right.&lt;BR /&gt;
&lt;BR /&gt;
For example, the user wants to 'right justify' the word 'Subtotals:' on the sheet.  I'm using a COMPUTE block to output the subtotal but I'm not sure how to justify the text in the cell.  (I'm using a CALL DEFINE to provide font, background, and format already).&lt;BR /&gt;
&lt;BR /&gt;
Is there a comprehensive list of the attributes that can be changed in the tagset using the 'CALL DEFINE'?  Do I use the SAS format (".J=Right"), the HTML format ("align=right") or the XML format ("ss:Horisontal="Right")?  If the attribute was not assigned to the "style", can it be altered by a CALL DEFINE statement?</description>
    <pubDate>Fri, 30 Jun 2006 16:20:04 GMT</pubDate>
    <dc:creator>OS2Rules</dc:creator>
    <dc:date>2006-06-30T16:20:04Z</dc:date>
    <item>
      <title>What attributes can be changed in ExcelXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/940#M456</link>
      <description>Hi All:&lt;BR /&gt;
&lt;BR /&gt;
I'm using the ExcelXP tagset to create a number of multi-tab spreadsheets.  The user has some very specific design requirements for these and I am having some problems getting them just right.&lt;BR /&gt;
&lt;BR /&gt;
For example, the user wants to 'right justify' the word 'Subtotals:' on the sheet.  I'm using a COMPUTE block to output the subtotal but I'm not sure how to justify the text in the cell.  (I'm using a CALL DEFINE to provide font, background, and format already).&lt;BR /&gt;
&lt;BR /&gt;
Is there a comprehensive list of the attributes that can be changed in the tagset using the 'CALL DEFINE'?  Do I use the SAS format (".J=Right"), the HTML format ("align=right") or the XML format ("ss:Horisontal="Right")?  If the attribute was not assigned to the "style", can it be altered by a CALL DEFINE statement?</description>
      <pubDate>Fri, 30 Jun 2006 16:20:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/940#M456</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2006-06-30T16:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: What attributes can be changed in ExcelXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/941#M457</link>
      <description>One way that this can be done is to apply the styles in the template. The style element created in the template can then be used with the STYLE= parameter of the CALL DEFINE statement.&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
  define style styles.test;&lt;BR /&gt;
    parent=styles.default;&lt;BR /&gt;
       style right from data /&lt;BR /&gt;
	  font_size=8pt&lt;BR /&gt;
          background=red&lt;BR /&gt;
	  just=right;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelxp file="temp1.xls" style=styles.test;&lt;BR /&gt;
&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
column name age sex height weight;&lt;BR /&gt;
&lt;BR /&gt;
compute sex;&lt;BR /&gt;
   if sex="F" then call define(_col_,"style","style=right");&lt;BR /&gt;
endcomp;&lt;BR /&gt;
&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelxp close;</description>
      <pubDate>Wed, 05 Jul 2006 15:53:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/941#M457</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2006-07-05T15:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: What attributes can be changed in ExcelXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/942#M458</link>
      <description>chevell:&lt;BR /&gt;
  I thought .r was already defined or will that not work for ExcelXP????&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 06 Jul 2006 16:24:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/What-attributes-can-be-changed-in-ExcelXP/m-p/942#M458</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2006-07-06T16:24:47Z</dc:date>
    </item>
  </channel>
</rss>

