Yes, it still wraps this way when I remove the rtf codes. It seems like there are 2 "cells" being created, one for the left and one for the right. I'm a bit unfamiliar with with how titles and footnotes work with proc report and ODS, so if there is anything else I can post that would help, please let me know. ODS options and our style sheet code are below. options nodate nonumber orientation = landscape papersize = 'LETTER' nobyline ; ods graphics on / reset = all height = 4.92in width =10in border = no ; ods listing close; ods rtf file = ".\_outputs\figures\&outfile..rtf" nogtitle nogfootnote style = epscistyle ; ods escapechar = '^' ; Style sheet proc template; define style Styles.epscistyle; parent = styles.rtf; style fonts / 'FixedFont' = ("Courier",9pt) 'BatchFixedFont' = ("Courier",6.7pt) 'FixedHeadingFont' = ("Courier",9pt,bold) 'FixedStrongFont' = ("Courier",9pt,bold) 'FixedEmphasisFont' = ("Courier",9pt,italic) 'footFont' = ("Courier New",8pt) 'docFont' = ("Courier New",8pt) 'headingFont' = ("Courier New",8pt) 'headingEmphasisFont' = ("Courier New",8pt) 'EmphasisFont' = ("Courier New",8pt) 'StrongFont' = ("Courier New",8pt) 'TitleFont2' = ("Courier New",8pt) 'TitleFont' = ("Courier New",8pt); style body from document / protectspecialchars = off borderspacing = 0pt cellpadding = 0pt backgroundcolor = _undef_ fontsize = 10pt fontfamily = "Courier" marginleft = 1in marginright = 1in margintop = 1in marginbottom = 1in; style Header / asis = on borderwidth = 0px; style usertext from usertext / width = 100% protectspecialchars = off; style table from table / borderwidth = .75pt borderspacing = 0pt cellpadding = 0.6pt asis = on frame = above rules = groups; style Byline from Byline / foreground=black; end; run;
... View more