<?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 ODS Templates and Styles Question in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57246#M6892</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmm, I see what you're saying, Cynthia. I got the same results you did. Perhaps the OP is doing some styling s/he didn't mention that is having some inheritance side effects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, OS2rules, now that I'm back at my own box, I took Cynthia's code and just stuck a style over-ride on the rbreak statement, rather than going to the trouble of running Proc Template. If you wanted to go with this solution, you'd need to change my "{color=red}" to set the style attributes that are wrong in your case. This is just a quick &amp;amp; dirty example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(. . . Cynthia's code up to the rbreak line . . .)&lt;/P&gt;&lt;P&gt;rbreak after / summarize style={color=red};&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;﻿If you wanted to post more of your code, we might be able to diagnose why your rbreak line is screwy. I'm kinda curious about that.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000ff;"&gt;﻿&lt;/SPAN&gt;Karl&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Feb 2012 21:37:19 GMT</pubDate>
    <dc:creator>KarlK</dc:creator>
    <dc:date>2012-02-17T21:37:19Z</dc:date>
    <item>
      <title>ODS Templates and Styles Question</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57243#M6889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a report using PROC REPORT that uses EXCELXP to write out a multi-tab spreadsheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I was developong this report I used a standard ODS template (the MINIMAL template) with some modification to the column headings and system titles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything was fine until I added a RBREAK to the PROC REPORT.&amp;nbsp; The summary line that is printed has a different font size, weight, and justification than the font used for all the other cells.&amp;nbsp; I did not make any changes to the SUMMARY either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Is there a way using the PROC TEMPLATE to insure the summary lines are printed the same as the rest of the report,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) How do I identify which part of the TEMPLATE is causing this to happen (will ODS TRACE do it?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 16:11:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57243#M6889</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2012-02-17T16:11:42Z</dc:date>
    </item>
    <item>
      <title>ODS Templates and Styles Question</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57244#M6890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a quick answer which I hope points you in the right direction. I'm sorry I can't test it right now. The style element for RBREAK lines is DataEmphasis. So in your Template modification, you should be able to add a "class DataEmphasis / ..." and style that. I suspect you can also style the RBREAK section directly in the Proc Report, but, again I apologize, I'm not at a SAS machine at the moment to be more helpful. If this doesn't help, post back here and I'll take another crack at it later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 19:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57244#M6890</guid>
      <dc:creator>KarlK</dc:creator>
      <dc:date>2012-02-17T19:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Templates and Styles Question</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57245#M6891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To add to Karl's response, ODS TRACE only traces output objects, so it's not going to help you with style elements. However, when I use BREAK and RBREAK with style minimal, I do not observe the style change you mention. See attached code and screen shot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10784iD7E6FFBFDB716CAF/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="br_rbr_no_diff.jpg" title="br_rbr_no_diff.jpg" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 19:56:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57245#M6891</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-02-17T19:56:20Z</dc:date>
    </item>
    <item>
      <title>ODS Templates and Styles Question</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57246#M6892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmm, I see what you're saying, Cynthia. I got the same results you did. Perhaps the OP is doing some styling s/he didn't mention that is having some inheritance side effects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, OS2rules, now that I'm back at my own box, I took Cynthia's code and just stuck a style over-ride on the rbreak statement, rather than going to the trouble of running Proc Template. If you wanted to go with this solution, you'd need to change my "{color=red}" to set the style attributes that are wrong in your case. This is just a quick &amp;amp; dirty example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(. . . Cynthia's code up to the rbreak line . . .)&lt;/P&gt;&lt;P&gt;rbreak after / summarize style={color=red};&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;﻿If you wanted to post more of your code, we might be able to diagnose why your rbreak line is screwy. I'm kinda curious about that.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000ff;"&gt;﻿&lt;/SPAN&gt;Karl&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 21:37:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Templates-and-Styles-Question/m-p/57246#M6892</guid>
      <dc:creator>KarlK</dc:creator>
      <dc:date>2012-02-17T21:37:19Z</dc:date>
    </item>
  </channel>
</rss>

