Usage Note 24020: In ODS RTF, how can I modify the colors of my cell values?
Modifying the colors of the cell values can be accomplished by replacing
the value associated with the string 'bg' in the Color_list style element.
This can also be done by modifying the style element Data, which is
shown below. View output.
proc template;
define style styles.newrtf;
parent=styles.RTF;
style Data from Data /
background=graybb;
end;
run;
ods rtf body='temp.rtf' style=styles.newrtf;
proc print data=sashelp.class;
title 'Modifying the cell colors';
run;
ods rtf close;
See more information about
PROC TEMPLATE and the RTF destination.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> RTF
|
| Date Modified: | 2004-06-29 16:20:14 |
| Date Created: | 2004-06-25 11:33:55 |