<?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 Proc Tabulate Level variable style in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420964#M20027</link>
    <description>&lt;P&gt;So if I want to modify the byline style I need to edit the style template that I am using for the pdf output.&amp;nbsp;I took a look at proc template and the byline has its own section so problem solved. Thank you very much!&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2017 19:35:31 GMT</pubDate>
    <dc:creator>DataGuy99</dc:creator>
    <dc:date>2017-12-13T19:35:31Z</dc:date>
    <item>
      <title>ODS Proc Tabulate Level variable style</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420228#M19996</link>
      <description>&lt;P&gt;SAS 9.4 using Proc Tabulate and ODS PDF output. How do I change the style (font, size, color, etc.) of the "level" variable label that prints just above the table that is created by a "by" statement? And a related issue is how to change the content of the label which is currently "level = &amp;lt;value&amp;gt;". Can I eliminate or edit the "level=" part?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks - Tommy&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2017 18:18:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420228#M19996</guid>
      <dc:creator>DataGuy99</dc:creator>
      <dc:date>2017-12-11T18:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Proc Tabulate Level variable style</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420232#M19997</link>
      <description>&lt;P&gt;Hi, can you post an example of some code with data or make an example using SASHELP data?&lt;BR /&gt;&lt;BR /&gt; Otherwise it is hard to visualize what you want and are trying to do.&lt;BR /&gt;&lt;BR /&gt;cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a code example that I have which uses SASHELP.SHOES, so you should be able to run the code. Rather than using a style template to alter the normal BYLINE, I tend to use the BY statement and put the BY information in the TITLE because the TITLE statement has the method built in to change color, font, size, etc.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=sashelp.shoes out=shoes;
  where region in ('United States' 'Canada' 'Western Europe') and
        product in ('Boot' 'Slipper' 'Sandal' 'Sport Shoe');
  by region product;
run;
  
proc format;
  value $prd 'Boot'='lightgreen'
             'Sandal'='lightyellow'
             'Sport Shoe' = 'lightblue'
			 'Slipper' = 'peachpuff';
  run;
     
title; footnote;
options nobyline;
ods pdf file='c:\temp\byvar_in_title.pdf';
  
proc tabulate data=shoes f=dollar15.2;
  title c=purple f="Courier New" h=14pt bold 'For #byval1';
  title2 'Plus other changes';
  by region;
  class region product / style={font_face="Courier New" color=red background=cxDDDDDD};
  classlev product / style={background=$prd.};
  var sales returns inventory;
  table product all*{style=Header{font_size=10pt}},
        sales*(sum mean max) returns*(sum mean) inventory*(sum mean);
  keylabel All='Summary';
  keyword All / style=Header;
run;
ods pdf close;
    
options byline; 
title; footnote;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 01:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420232#M19997</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-12-12T01:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Proc Tabulate Level variable style</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420964#M20027</link>
      <description>&lt;P&gt;So if I want to modify the byline style I need to edit the style template that I am using for the pdf output.&amp;nbsp;I took a look at proc template and the byline has its own section so problem solved. Thank you very much!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 19:35:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-Tabulate-Level-variable-style/m-p/420964#M20027</guid>
      <dc:creator>DataGuy99</dc:creator>
      <dc:date>2017-12-13T19:35:31Z</dc:date>
    </item>
  </channel>
</rss>

