Hi all, I'm trying to add a bottom border to the title container for my report going to the PDF destination. I'm using proc template to do this, but what I thought would work (below) is not (no borders are being produced at all). For example: I'd like to take this: Title 1 Title 2 and convert it to this: Title1 Title2 Note, I have also tried the "underline" option in the title statement, but that only works so long as you have text in the field. I want the border to span the entire width of the page, and some of my pages are in portrait and others in landscape orientation. Sample SAS code that I've tried using: proc template; define style mystyle; parent=styles.statistical; style SysTitleandFooterContainer from SysTitleandFooterContainer/ frame=below rules=rows; [More code below this]
... View more