<?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: proc tabulate (to excel via ods) Fonts not applying corectly in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-tabulate-to-excel-via-ods-Fonts-not-applying-corectly/m-p/162834#M12091</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, it looks like some of your statements got truncated or chopped off on the left-hand side? Can you repost the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Just as an aside, on my system the name of the font is NOT TIMES_NEW_ROMAN -- if you specify a font that is not found, then the default Microsoft font is used. On my system, the name of the font is "Times New Roman" -- mixed case, with spaces. Is the name of the font on your system actually TIMES_NEW_ROMAN???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you seem to be missing a semi-colon after your first %LET statement.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You were also missing a CLASSLEV statement and a unit of measure after your CELLWIDTH (I don't think you mean 1.5 &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;pixels&lt;/STRONG&gt;&lt;/SPAN&gt;). And, you needed a KEYWORD statement to apply style to the other values, like TOTAL, etc. Since you did not post your formats or any data, I ran this test with SASHELP.PRDSALE. This code worked for me. I used ODS MSOFFICE2K because Excel is notorious for NOT liking the type of style that is specified in "regular" ODS HTML (which creates HTML 4.0 tags), so I always use ODS MSOFFICE2K, which creates Microsoft "flavor" of HTML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%LET STY1=FONT_FACE="Times New Roman"&amp;nbsp; FONT_SIZE=12PT&amp;nbsp; FOREGROUND=BLACK just=left cellwidth=1.5in;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%LET STY2= FONT_FACE="Times New Roman"&amp;nbsp; FONT_SIZE=12PT&amp;nbsp; FOREGROUND=MAROON just=left cellwidth=1.5in;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ODS msoffice2k FILE='C:\temp\times_REPORT.XLS' style=sasweb;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title1 f="Times New Roman" h=12pt bold "Interim Results for the SCTCS Academic Program Evaluation of the 2012-2013 Graduate Placement";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title2 f="Times New Roman" h=12pt bold "based on the Graduate Survey, National Clearing House, and SC Employment Data";&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;PROC TABULATE DATA=sashelp.prdsale MISSING STYLE=[&amp;amp;STY1] ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; CLASS region country prodtype/style=[&amp;amp;STY1] ; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; CLASSLEV region country prodtype / style=[&amp;amp;STY1];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; VAR actual predict /STYLE=[&amp;amp;STY1];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; TABLE&amp;nbsp; (country=' '*region=' '*prodtype=' ' ALL='TOTAL'*F=6.0)*[STYLE=[&amp;amp;STY1] ], &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (actual predict)*(sum mean max min )*[STYLE=[&amp;amp;STY2]]*F=6.0&amp;nbsp; ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; KEYWORD ALL SUM MEAN MIN MAX / style=[&amp;amp;sty1];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;RUN;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ODS msoffice2k CLOSE;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jul 2014 01:59:46 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2014-07-02T01:59:46Z</dc:date>
    <item>
      <title>proc tabulate (to excel via ods) Fonts not applying corectly</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-tabulate-to-excel-via-ods-Fonts-not-applying-corectly/m-p/162833#M12090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;My Excel is set up with Times New Roman 12pt as the default font. When I run the following program,&amp;nbsp; the CLASS Variable values are displayed with the Arial 12 PT font when I open the output in excel.&amp;nbsp; Also, the Degree variable values are centered and not left adjusted. Any ideas on why the Arial font is being applied or why the Degree var values are being centered?&amp;nbsp; It does not take much to edit it, but it is annoying.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;Thanks in advance,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;Charlie&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; %LET STY1=FONT_FACE="TIMES_NEW_ROMAN"&amp;nbsp; FONT_SIZE=12PT&amp;nbsp; FOREGROUND=BLACK just=left cellwidth=1.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;%LET STY2= FONT_FACE="TIMES_NEW_ROMAN"&amp;nbsp; FONT_SIZE=12PT&amp;nbsp; FOREGROUND=MAROON just=left cellwidth=1.5;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;HTML FILE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;'C:\PROG EVAL 2014\REPORTS\PRELIM GFU-MTC-TRF-DEW REPORT.XLS'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;"&amp;lt;td align=center colspan=9&amp;gt;&amp;lt;font TIMES_NEW_ROMAN size=12PT&amp;gt;&amp;lt;b&amp;gt; Interim Results for the SCTCS Academic Program Evaluation of the 2012-2013 Graduate Placement &amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;"&amp;lt;td align=center colspan=9&amp;gt;&amp;lt;font TIMES_NEW_ROMAN size=12PT&amp;gt;&amp;lt;b&amp;gt; based on the Graduate Survey, National Clearing House, and SC Employment Data &amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: 12pt; font-family: Comic Sans MS;"&gt;TABULATE&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=DEWYX &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;MISSING&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;STYLE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=[&amp;amp;STY1] ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; CLASS DEPT DEGREE DEGTITLE/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=[&amp;amp;STY1] ; VAR&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; GRAD IN_FIELD SCHOOL RESP EXCLUDE&amp;nbsp; PLACED ADJTOT/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;STYLE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=[&amp;amp;STY1];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;TABLE &lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; (DEPT=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;*DEGREE=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;*DEGTITLE=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; ALL=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;'TOTAL'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;F&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=&lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 12pt; font-family: Comic Sans MS;"&gt;6.0&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;)*[&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;STYLE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=[&amp;amp;STY1] ], ((GRAD=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;'Grads'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; In_Field&amp;nbsp; School&amp;nbsp; Placed Resp)*[&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;STYLE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=[&amp;amp;STY2]]*&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;F&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=&lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 12pt; font-family: Comic Sans MS;"&gt;6.0 &lt;/STRONG&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;'Placed %'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;*((PCTSUM&amp;lt;adjtot&amp;gt;)*&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;f&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 12pt; font-family: Comic Sans MS;"&gt;pctPIC.&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;)*[&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=[FONT_FACE=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;"TIMES_NEW_ROMAN"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;&amp;nbsp; FONT_SIZE=&lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 12pt; font-family: Comic Sans MS;"&gt;12&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;PT&amp;nbsp; foreground=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 12pt; font-family: Comic Sans MS;"&gt;traffic.&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;]]) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;KEYLABEL &lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;SUM&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;KEY LABEL &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;PCTSUM&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Comic Sans MS;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;HTML&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Comic Sans MS;"&gt;CLOSE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Comic Sans MS;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 23:15:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-tabulate-to-excel-via-ods-Fonts-not-applying-corectly/m-p/162833#M12090</guid>
      <dc:creator>madhatter</dc:creator>
      <dc:date>2014-07-01T23:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate (to excel via ods) Fonts not applying corectly</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-tabulate-to-excel-via-ods-Fonts-not-applying-corectly/m-p/162834#M12091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, it looks like some of your statements got truncated or chopped off on the left-hand side? Can you repost the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Just as an aside, on my system the name of the font is NOT TIMES_NEW_ROMAN -- if you specify a font that is not found, then the default Microsoft font is used. On my system, the name of the font is "Times New Roman" -- mixed case, with spaces. Is the name of the font on your system actually TIMES_NEW_ROMAN???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you seem to be missing a semi-colon after your first %LET statement.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You were also missing a CLASSLEV statement and a unit of measure after your CELLWIDTH (I don't think you mean 1.5 &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;pixels&lt;/STRONG&gt;&lt;/SPAN&gt;). And, you needed a KEYWORD statement to apply style to the other values, like TOTAL, etc. Since you did not post your formats or any data, I ran this test with SASHELP.PRDSALE. This code worked for me. I used ODS MSOFFICE2K because Excel is notorious for NOT liking the type of style that is specified in "regular" ODS HTML (which creates HTML 4.0 tags), so I always use ODS MSOFFICE2K, which creates Microsoft "flavor" of HTML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%LET STY1=FONT_FACE="Times New Roman"&amp;nbsp; FONT_SIZE=12PT&amp;nbsp; FOREGROUND=BLACK just=left cellwidth=1.5in;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%LET STY2= FONT_FACE="Times New Roman"&amp;nbsp; FONT_SIZE=12PT&amp;nbsp; FOREGROUND=MAROON just=left cellwidth=1.5in;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ODS msoffice2k FILE='C:\temp\times_REPORT.XLS' style=sasweb;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title1 f="Times New Roman" h=12pt bold "Interim Results for the SCTCS Academic Program Evaluation of the 2012-2013 Graduate Placement";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title2 f="Times New Roman" h=12pt bold "based on the Graduate Survey, National Clearing House, and SC Employment Data";&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;PROC TABULATE DATA=sashelp.prdsale MISSING STYLE=[&amp;amp;STY1] ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; CLASS region country prodtype/style=[&amp;amp;STY1] ; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; CLASSLEV region country prodtype / style=[&amp;amp;STY1];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; VAR actual predict /STYLE=[&amp;amp;STY1];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; TABLE&amp;nbsp; (country=' '*region=' '*prodtype=' ' ALL='TOTAL'*F=6.0)*[STYLE=[&amp;amp;STY1] ], &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (actual predict)*(sum mean max min )*[STYLE=[&amp;amp;STY2]]*F=6.0&amp;nbsp; ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; KEYWORD ALL SUM MEAN MIN MAX / style=[&amp;amp;sty1];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;RUN;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ODS msoffice2k CLOSE;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 01:59:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-tabulate-to-excel-via-ods-Fonts-not-applying-corectly/m-p/162834#M12091</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-07-02T01:59:46Z</dc:date>
    </item>
  </channel>
</rss>

