<?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: Font properties in ODS Excel in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351616#M18360</link>
    <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;I suggest that you open a track with our Technical Support Department:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_self"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Be sure to include your code, sample data, and a copy of the SAS log from the code that fails.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Apr 2017 11:25:17 GMT</pubDate>
    <dc:creator>Vince_SAS</dc:creator>
    <dc:date>2017-04-20T11:25:17Z</dc:date>
    <item>
      <title>Font properties in ODS Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351273#M18350</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS ODS Excel to generate excel files with tables. My question is how do I set the font, font size, color and font weight.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previously I used something like this in SAS ods excelxp tagset. But that does not seem to be working anymore.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;define tot_defects/ display style(header)={font_face="Calibri" font_size=12pt font_weight=bold background=CX2E8B57 foreground=CXFFFFFF just=c}
          style(column)={font_face="Calibri" font_size=10pt just=c};&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 13:10:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351273#M18350</guid>
      <dc:creator>ADN</dc:creator>
      <dc:date>2017-04-19T13:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Font properties in ODS Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351416#M18353</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;What version of SAS are you using? &amp;nbsp;This worked for me using SAS 9.4 M3 on Windows:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;&lt;BR /&gt;
ods Excel file='C:\temp\temp.xlsx';
  proc report data=sashelp.class nowd;
    column name age sex height weight;
    define name / display style(header)=[font_face='Calibri' font_size=12pt font_weight=bold background=CX2E8B57 foreground=CXFFFFFF just=c]
                          style(column)=[font_face='Calibri' font_size=10pt just=c];
  run; quit;
ods Excel close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 18:33:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351416#M18353</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2017-04-19T18:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Font properties in ODS Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351585#M18359</link>
      <description>&lt;P&gt;I am using sas&amp;nbsp;9.04.01M3P062415&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the Fonts are not coming as expected. Rest is still fine........&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 09:18:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351585#M18359</guid>
      <dc:creator>ADN</dc:creator>
      <dc:date>2017-04-20T09:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Font properties in ODS Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351616#M18360</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;I suggest that you open a track with our Technical Support Department:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_self"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Be sure to include your code, sample data, and a copy of the SAS log from the code that fails.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 11:25:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Font-properties-in-ODS-Excel/m-p/351616#M18360</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2017-04-20T11:25:17Z</dc:date>
    </item>
  </channel>
</rss>

