******************************************************************************** proc template; define style WM10; parent = styles.rtf; replace fonts / 'docFont' = ("Times New Roman",10pt) 'headingFont' = ("Times New Roman",10pt) 'headingEmphasisFont' = ("Times New Roman",10pt,Bold Italic) 'FixedFont' = ("Times Roman",10pt) 'BatchFixedFont' = ("Times New Roman",10pt) 'FixedHeadingFont' = ("Times Roman",10pt,Bold) 'FixedStrongFont' = ("Times Roman",10pt,Bold) 'FixedEmphasisFont' = ("Times Roman",10pt,Italic) 'EmphasisFont' = ("Times New Roman",10pt,Italic) 'StrongFont' = ("Times New Roman",10pt,Bold) 'TitleFont' = ("Times New Roman",10pt) 'TitleFont2' = (" Times New Roman",10pt); style Table from Output / borderwidth = 0.75pt cellspacing = 0.75pt cellpadding = 0pt background = _undef_ frame=above rules=groups width=100%; style body from document / leftmargin=1in rightmargin=1in topmargin=0.75in bottommargin=0.75in; replace HeadersAndFooters from Cell / font = fonts('HeadingFont'); end; run; options orientation=landscape nobyline ls=256; ods tagsets.rtf_sample file="&outdir.\&outputname..rtf" style=WM10 options(watermark="DRAFT") ; ods output report=reportOut; proc report data = rptdata nowd split='|'; by rowlbl col: ; define rowlbl / display " " ; run; ods rtf close;