Cynthia, Thanks for the reply. I will take some time to investigate TAGSETS.RTF, although right now it makes more changes to my code than I have time to fix. However, I like the COMPUTE BEFORE _PAGE_ idea and altered my code to take advantage of this. My only problem is getting a black line between the text and headers in the 2nd report...to match the 1st report. Do you know how to effect the top border of the header? (borderbottomcolor=black in the compute statement does not give me a black line above the header) ods escapechar = '^' ; ods rtf file = "/opt/local/user/jsc/test.rtf" style=styles.sasweb startpage = no ; ods text="^S={just=c fontweight=bold fontsize=12pt color=black}First Report"; proc report data = sashelp.cars(obs=10) nowd ; column make model type ; define make / 'Make' display ; define model / 'Model' display; define type / 'Type' display; run ; /*ods text="^S={just=c fontweight=bold fontsize=12pt color=black}2nd Report";*/ proc report data = sashelp.cars(firstobs=11 obs=21) nowd ; column make model type ; define make / 'Make' display ; define model / 'Model' display; define type / 'Type' display; compute before _page_ / style={just=c borderTopcolor=white borderRightcolor=white borderleftcolor=white borderbottomcolor=black fontweight=bold fontsize=12pt color=black} ; line '2nd Report'; endcomp; run ; ods rtf close;
... View more