<?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: Recreate Group UL and break spacing in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602654#M23485</link>
    <description>&lt;P&gt;Thanks Cynthia, that was all I needed.&amp;nbsp; Did more tweaking and now i am happy with it.&amp;nbsp; Learned a lot.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2019 00:29:05 GMT</pubDate>
    <dc:creator>texasmfp</dc:creator>
    <dc:date>2019-11-08T00:29:05Z</dc:date>
    <item>
      <title>Recreate Group UL and break spacing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602322#M23467</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I normally create a PDF of my reports the old-fashioned way - by printing the OUTPUT Listing to pdf.&amp;nbsp; I am trying to save some printing and labeling steps by automating this using ODS.&amp;nbsp; However, none of the SAS styles mirror the look.&amp;nbsp; ODS is completely new to me, but fascinating to learn.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Muddling my way through it by first reading something and then playing with it, I have learned how to create my own style template and, I have started to modify the existing Monospace style with partial success.&amp;nbsp; I am stuck on a few items:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1-underlining the summed TVAL2&lt;/P&gt;&lt;P&gt;2-skipping a line between groups&lt;/P&gt;&lt;P&gt;3-no skipped lines (or line spacing) within a group&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;of lesser importance&lt;/P&gt;&lt;P&gt;4-changing the line under the header to be thinner and blue&lt;/P&gt;&lt;P&gt;5-a skipped line under the header underline&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached are the original and my attempt at mimicking it.&amp;nbsp; Here is my current code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC TEMPLATE;
define style Styles.SASMonospace;
   parent = styles.printer;
   class fonts /
      'docFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'headingFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'headingEmphasisFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'FixedFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'FixedHeadingFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'FixedStrongFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'FixedEmphasisFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'EmphasisFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'StrongFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'TitleFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'TitleFont2' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
      'BatchFixedFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt);

class header/
backgroundcolor=white
color=Blue;

style systemtitle /
backgroundcolor=white
color=Blue;

style systemfooter /
backgroundcolor=white
color=Blue;

style body /
backgroundcolor=white
color=Black;

class table /
      frame = void
      rules = groups
      backgroundcolor = white
      borderspacing = 0pt
      cellpadding = 2pt;
   style allrulestable from table /
      frame = void
      rules = all;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would appreciate any tips.&amp;nbsp; Fast learner, but limited ODS knowledge.&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 01:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602322#M23467</guid>
      <dc:creator>texasmfp</dc:creator>
      <dc:date>2019-11-13T01:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Group UL and break spacing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602619#M23484</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;You cannot insert blank lines using PROC TEMPLATE, you need to do insertion of empty lines between groups in PROC REPORT code. Unfortunately, you are using LISTING only options like OL, and SKIP with PROC REPORT and those options will NOT work with ODS Destinations. There have been several postings about how options like OL, UL, DUL, DOL, HEADLINE, FLOW, etc, will not work for ODS RTF, ODS PDF and ODS HTML.&lt;BR /&gt;&lt;BR /&gt;To change the borderwidth of any border lines, you typically use the borderwidth style attribute .&lt;BR /&gt;&lt;BR /&gt;Here's an example of inserting empty lines between a group (AGE) and also turning on some kind of line for a summed column (HEIGHT) using just the JOURNAL style and doing overrides in PROC REPORT for colors/fonts/etc:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="all_changes_proc_report.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33773iFAD86AD04BE55AD2/image-size/large?v=v2&amp;amp;px=999" role="button" title="all_changes_proc_report.png" alt="all_changes_proc_report.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 20:56:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602619#M23484</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-11-07T20:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Group UL and break spacing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602654#M23485</link>
      <description>&lt;P&gt;Thanks Cynthia, that was all I needed.&amp;nbsp; Did more tweaking and now i am happy with it.&amp;nbsp; Learned a lot.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 00:29:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Recreate-Group-UL-and-break-spacing/m-p/602654#M23485</guid>
      <dc:creator>texasmfp</dc:creator>
      <dc:date>2019-11-08T00:29:05Z</dc:date>
    </item>
  </channel>
</rss>

