Hi, I am trying to create a report with specific headers. And earlier in my code I had created a variable called bigN that stored the frequencies in each group. I wanted to know whether there was a possibility in Proc Report to add that variable as a header along with the name of the treatment group. I have this so far, I am only trying it for column 1 but it isn't working correctly. Any advice is appreciated! Thank you! proc report nowd center spanrows missing split='^' data=all list out=test style(report)=[frame=void rules=none cellspacing=0 padding=1pt font=('Courier New', 8pt)] style(header)=[bordertopcolor=balck bordertopwidth=1 borderbottomcolor=black borderbottomwidth=1 background=white font=('Courier New', 8pt) textalign=c ] style(column)=[font=('Courier New', 8pt) ASIS=ON ] ; columns _PB_page vorder roworder rowlabel col_1 col_2 col_3 col_4; define _PB_page/group noprint; define vorder/order noprint; define roworder/order noprint; define rowlabel/display id ' ' style(column)=[width=3in] flow; define col_1/display 'Group 1 (N = ',bign,')' style(column)=[width=1.5in] center flow; define col_2/display style(column)=[width=1.5in] center flow; define col_3/display style(column)=[width=1.5in] center flow; define col_4/display style(column)=[width=1.5in] center flow;
... View more