I am trying to output a table from SAS to Word. This is the code I wrote:
ods listing close;
ods rtf file = "Z:\univ.rtf" ;
proc report data = univ nowd split = '*';
run;
ods rtf close;
ods listing;
The table I got looks like this:
Variable format HR
________________________
Age <=45 1.00
________________________
46-60 0.65
________________________
>60 0.81
________________________
Stage II 1.00
_________________________
III 1.86
_________________________
Is there a way to make the row line between age and stage heavier and row
lines within Age and stage lighter?
Thanks.