<?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: [Ods tagsets.excelxp]How to customize the font of the titles ? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75762#M8591</link>
    <description>Great,&lt;BR /&gt;
thank you Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
Phil</description>
    <pubDate>Wed, 21 Apr 2010 07:37:42 GMT</pubDate>
    <dc:creator>phil27</dc:creator>
    <dc:date>2010-04-21T07:37:42Z</dc:date>
    <item>
      <title>[Ods tagsets.excelxp]How to customize the font of the titles ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75760#M8589</link>
      <description>Hi,&lt;BR /&gt;
I make an xls file with ods tagsets.excelxp.&lt;BR /&gt;
&lt;BR /&gt;
I would like to modify the size of the text printed by the statements :&lt;BR /&gt;
title, title2 and title3.&lt;BR /&gt;
&lt;BR /&gt;
Is it possible ?&lt;BR /&gt;
&lt;BR /&gt;
Thanks.&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods noproctitle;&lt;BR /&gt;
&lt;BR /&gt;
title "title1";&lt;BR /&gt;
title2 "title2";&lt;BR /&gt;
title3 "title3";&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelxp file="C:\toto.xls" style=seaside&lt;BR /&gt;
      options( embedded_titles='yes'&lt;BR /&gt;
				embedded_footnotes='yes'&lt;BR /&gt;
				Center_Horizontal = 'yes'&lt;BR /&gt;
				Center_Vertical = 'yes'&lt;BR /&gt;
				contents='no'&lt;BR /&gt;
				index='no'&lt;BR /&gt;
				sheet_interval='none'&lt;BR /&gt;
				orientation='portrait'&lt;BR /&gt;
				FitToPage = 'yes'&lt;BR /&gt;
				Absolute_Column_Width='15'&lt;BR /&gt;
				Autofit_Height = 'YES'&lt;BR /&gt;
				Pages_FitWidth = '1'&lt;BR /&gt;
				Pages_FitHeight = '3000'&lt;BR /&gt;
				Print_Footer='&amp;amp;E SERVICE, &amp;amp;J &amp;amp;C Audit v1.0 &amp;amp;D Pages &amp;amp;P sur &amp;amp;T'&lt;BR /&gt;
			)&lt;BR /&gt;
		;&lt;BR /&gt;
&lt;BR /&gt;
proc freq data=sashelp.cars; tables model; run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelxp close;&lt;BR /&gt;
ods listing;</description>
      <pubDate>Tue, 20 Apr 2010 15:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75760#M8589</guid>
      <dc:creator>phil27</dc:creator>
      <dc:date>2010-04-20T15:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: [Ods tagsets.excelxp]How to customize the font of the titles ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75761#M8590</link>
      <description>Hi:&lt;BR /&gt;
  The easiest way to change the title -- no matter what your ODS destination is -- is to use the title/footnote specific options as shown below:&lt;BR /&gt;
[pre]&lt;BR /&gt;
title f='Courier New' h=14pt color=green bold "title1";&lt;BR /&gt;
title2 f='Arial' h=14pt color=purple italic "title2";&lt;BR /&gt;
title3 f='Times New Roman' h=12pt bold italic color=red "title3";&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                 &lt;BR /&gt;
&lt;B&gt;f= (or font=)&lt;/B&gt; supplies the font name -- I quote all font names, but you only need to quote font names with spaces&lt;BR /&gt;
&lt;B&gt;h= (or height=)&lt;/B&gt; supplies the size (called "height" as an artifact left over from SAS/GRAPH) -- I always specify H= in PT units for ODS destinations&lt;BR /&gt;
&lt;B&gt;c= (or color=) &lt;/B&gt;supplies the foreground color of the string text that follows&lt;BR /&gt;
&lt;B&gt;bold&lt;/B&gt; is the option that bolds the text string&lt;BR /&gt;
&lt;B&gt;italic&lt;/B&gt; is the option that italicizes the text string&lt;BR /&gt;
&lt;BR /&gt;
All title and footnote options must be specified BEFORE the text string they are meant to change.&lt;BR /&gt;
&lt;BR /&gt;
Another method of altering the title and footnote statement is to use ODS ESCAPECHAR functionality, however, you can probably get what you want using these specific options first.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 20 Apr 2010 20:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75761#M8590</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-04-20T20:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: [Ods tagsets.excelxp]How to customize the font of the titles ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75762#M8591</link>
      <description>Great,&lt;BR /&gt;
thank you Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
Phil</description>
      <pubDate>Wed, 21 Apr 2010 07:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Ods-tagsets-excelxp-How-to-customize-the-font-of-the-titles/m-p/75762#M8591</guid>
      <dc:creator>phil27</dc:creator>
      <dc:date>2010-04-21T07:37:42Z</dc:date>
    </item>
  </channel>
</rss>

