<?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, font weight and page element in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/427034#M20153</link>
    <description>ODS Excel is production and has been for a while. I am still running 9.4 M3 and that's what I used for this screen shot.&lt;BR /&gt;Cynthia</description>
    <pubDate>Thu, 11 Jan 2018 21:44:16 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-01-11T21:44:16Z</dc:date>
    <item>
      <title>ExcelXP, PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426727#M20145</link>
      <description>&lt;P&gt;So this is a ExcelXP issue, not a PROC TABULATE issue, as I see it.&amp;nbsp; Can someone show me how to format the fontweight for the page-wise table title, using tagsets.ExcelXP, in the example represented by the variable ORIGIN.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods tagsets.excelXP
  file="ex1.xls"
  style=SASdocPrinter;
PROC TABULATE DATA=SASHELP.CARS;
  
  CLASS Make /  ORDER=UNFORMATTED MISSING;
  CLASS Type /  ORDER=UNFORMATTED MISSING;
  CLASS Origin /  ORDER=UNFORMATTED MISSING style=[fontweight=bold ];
  TABLE /* Page Dimension */
    Origin,
    /* Row Dimension */
    Make,
    /* Column Dimension */
    Type*
      N     ;
RUN;
ods tagsets.excelXP close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 13:35:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426727#M20145</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2018-01-11T13:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426737#M20146</link>
      <description>&lt;P&gt;The style information goes on the CLASS statement.&lt;/P&gt;
&lt;PRE&gt;PROC TABULATE DATA=SASHELP.CARS;
  
  CLASS Make /  ORDER=UNFORMATTED MISSING;
  CLASS Type /  ORDER=UNFORMATTED MISSING;
  CLASS Origin /  ORDER=UNFORMATTED MISSING style=[fontweight=light fontsize=25pt];
  TABLE /* Page Dimension */
    Origin,
    /* Row Dimension */
    Make,
    /* Column Dimension */
    Type*
      N     ;
RUN;&lt;/PRE&gt;
&lt;P&gt;BIG size just to show it is taking effect. With that large it looks kind of "bold" but isn't.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 00:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426737#M20146</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-11T00:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426856#M20147</link>
      <description>Hi:&lt;BR /&gt;   I only find BOLD and NORMAL the values that work best for fontweight. I would not expect LIGHT to have much of an impact -- if you want the value to appear lighter, I suggest gray something like color=CXDDDDDD or color=CX999999.&lt;BR /&gt;cynthia</description>
      <pubDate>Thu, 11 Jan 2018 13:05:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426856#M20147</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-01-11T13:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426863#M20148</link>
      <description>&lt;P&gt;ok. So what I thought was a PROC TABULATE issue is an ExcelXP issue.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 13:36:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426863#M20148</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2018-01-11T13:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426969#M20150</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Can you try ODS EXCEL instead of TAGSETS.EXCELXP? This is what I got using ODS EXCEL:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="try_ods_excel.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17801i88BD39D0350FEB94/image-size/large?v=v2&amp;amp;px=999" role="button" title="try_ods_excel.png" alt="try_ods_excel.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 19:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/426969#M20150</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-01-11T19:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/427017#M20151</link>
      <description>&lt;P&gt;yes.&amp;nbsp; We've yet to install SAS4M5 here, and I'm hoping the "FLOW" option works then for me, first, until then I'm going to use ExcelXP.&amp;nbsp; ExcelXP has been so great,&amp;nbsp;and its surprising when any of these great SAS&amp;nbsp;products don't do that one thing.&amp;nbsp; thanks&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 21:13:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/427017#M20151</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2018-01-11T21:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/427034#M20153</link>
      <description>ODS Excel is production and has been for a while. I am still running 9.4 M3 and that's what I used for this screen shot.&lt;BR /&gt;Cynthia</description>
      <pubDate>Thu, 11 Jan 2018 21:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/427034#M20153</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-01-11T21:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE, font weight and page element</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/428420#M20182</link>
      <description>&lt;P&gt;ODS Excel adds those **bleep**&amp;nbsp;&amp;nbsp;line feeds (oops)&amp;nbsp;in to your strings.&amp;nbsp; My pet peeve, SAS isn't supposed to change your data, just dress it up.&amp;nbsp; It's my own hang up.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 15:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-PROC-TABULATE-font-weight-and-page-element/m-p/428420#M20182</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2018-01-17T15:31:34Z</dc:date>
    </item>
  </channel>
</rss>

