Hi, I have a problem with drawing some horizontal lines in tables produced by proc report. The table looks like that: Column1 Column2 Column3 Section 1 xxx xxx Section 1 xxx xxx Section 1 xxx xxx Section 2 xxx xxx Section 2 xxx xxx Section 3 xxx xxx I want to have a thicker line (underline) after each section (see column1). I tried "break after ... /OL" in proc report but it's only working with listing, not with RTF output. That statement is ignored when using ODS RTF. I also tried to insert another row with 0pt size (computer after and line statement in proc report) but a font size lower than 6pt is not allowed. Last, I wrote RTF code words in the SAS data set, e.g. - Column1 = "^{style [bordertopwidth=2pt]}"||Column1; - and I do that for each column. This solution is working but there is one bug - there is a leading blank in each cell (I tried to demonstrate that in Column3 - if a new section starts, i.e. if RTF code words are implemented in the variables, there will be a leading blank). I cannot see the blank in the SAS dataset but only in the output - I tried SAS character functions, e.g. "strip" but it did not change anything. If someone has an idea - how to avoid/delete the leading blanks or better, if someone has a better idea than writing RTF code words in SAS datasets, please let me know! Thanks for help!!!
... View more