<?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 Proc report in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9669#M2954</link>
    <description>Hi,&lt;BR /&gt;
Is there a way to give a style only to the &lt;U&gt;&lt;B&gt;values&lt;/B&gt;&lt;/U&gt; of the 'TOTAL'.?&lt;BR /&gt;
&lt;BR /&gt;
proc report data=a nowindows headskip ;&lt;BR /&gt;
column visit_char (n);&lt;BR /&gt;
define visit_char/group ;&lt;BR /&gt;
rbreak after/summarize style={foreground=blue};&lt;BR /&gt;
/*-this option also highligths the 'TOTAL'.....*/&lt;BR /&gt;
compute after;&lt;BR /&gt;
visit_char='Total' ;&lt;BR /&gt;
endcomp;&lt;BR /&gt;
where visit in(0,1,2) and code in(314,303);&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
ODS RTF close ;</description>
    <pubDate>Sun, 25 Apr 2010 08:56:32 GMT</pubDate>
    <dc:creator>yonib</dc:creator>
    <dc:date>2010-04-25T08:56:32Z</dc:date>
    <item>
      <title>Proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9669#M2954</link>
      <description>Hi,&lt;BR /&gt;
Is there a way to give a style only to the &lt;U&gt;&lt;B&gt;values&lt;/B&gt;&lt;/U&gt; of the 'TOTAL'.?&lt;BR /&gt;
&lt;BR /&gt;
proc report data=a nowindows headskip ;&lt;BR /&gt;
column visit_char (n);&lt;BR /&gt;
define visit_char/group ;&lt;BR /&gt;
rbreak after/summarize style={foreground=blue};&lt;BR /&gt;
/*-this option also highligths the 'TOTAL'.....*/&lt;BR /&gt;
compute after;&lt;BR /&gt;
visit_char='Total' ;&lt;BR /&gt;
endcomp;&lt;BR /&gt;
where visit in(0,1,2) and code in(314,303);&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
ODS RTF close ;</description>
      <pubDate>Sun, 25 Apr 2010 08:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9669#M2954</guid>
      <dc:creator>yonib</dc:creator>
      <dc:date>2010-04-25T08:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9670#M2955</link>
      <description>Hi:&lt;BR /&gt;
   Investigate the use of the CALL DEFINE statement to selectively change a column's style attributes based on the value of the automatic break variable, _BREAK_.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
data a;&lt;BR /&gt;
  set sashelp.prdsale;&lt;BR /&gt;
  visit_char = region;&lt;BR /&gt;
run;&lt;BR /&gt;
                  &lt;BR /&gt;
ODS RTF file='c:\temp\visit.rtf';&lt;BR /&gt;
proc report data=a nowindows headskip ;&lt;BR /&gt;
  column visit_char (n);&lt;BR /&gt;
  define visit_char/group ;&lt;BR /&gt;
  define n/'N';&lt;BR /&gt;
  rbreak after/summarize;&lt;BR /&gt;
  /*- the CALL DEFINE statement highlights the total value of N */&lt;BR /&gt;
  compute n;&lt;BR /&gt;
    if _break_ = '_RBREAK_' then do;&lt;BR /&gt;
      call define(_COL_,'style','style={foreground=blue}');&lt;BR /&gt;
    end;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute after;&lt;BR /&gt;
     visit_char='Total' ;&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
quit;&lt;BR /&gt;
                    &lt;BR /&gt;
ODS RTF close ; &lt;BR /&gt;
[/pre]</description>
      <pubDate>Sun, 25 Apr 2010 18:29:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9670#M2955</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-04-25T18:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9671#M2956</link>
      <description>OK Cynthia,&lt;BR /&gt;
I will check it, Thank for your help !!</description>
      <pubDate>Mon, 26 Apr 2010 07:11:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report/m-p/9671#M2956</guid>
      <dc:creator>yonib</dc:creator>
      <dc:date>2010-04-26T07:11:23Z</dc:date>
    </item>
  </channel>
</rss>

