Use the STYLE options and some guess and testing shows this works:
proc report data=sashelp.class
style(lines) = [bordertopcolor=white borderbottomcolor=white];
Documentation reference with all the options for styling
@blueskyxyz wrote:
***style;
title;
footnote;
ods rtf file="...\class.rtf" style=journal;
proc report data=sashelp.class;
where age<=12;
column name sex age height weight;
compute before _page_ ;
line "title1" ;
endcomp;
compute after _page_ ;
line "foot1";
endcomp;
run;
title;
ods rtf close;
