Hi:
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_.
cynthia
[pre]
data a;
set sashelp.prdsale;
visit_char = region;
run;
ODS RTF file='c:\temp\visit.rtf';
proc report data=a nowindows headskip ;
column visit_char (n);
define visit_char/group ;
define n/'N';
rbreak after/summarize;
/*- the CALL DEFINE statement highlights the total value of N */
compute n;
if _break_ = '_RBREAK_' then do;
call define(_COL_,'style','style={foreground=blue}');
end;
endcomp;
compute after;
visit_char='Total' ;
endcomp;
quit;