Hi, I am trying to figure out how to get the delta symbol and a superscript for one of my column headers to display in my proc report output, but I can't seem to get this to work. This is what I have so far. Any help is greatly appreciated! options nodate nonumber center Orientation=landscape topmargin=.5in bottommargin=.4in leftmargin=.5in rightmargin=.5in; ods listing close; protectspecialchars=off; ods escapechar='^'; ods rtf file="&outpath&saveWordDoc..rtf" ; title1 j=l font='Courier New' h=8pt "&titlename1 ^n &titlename2 ^n &titlename3" j=r "&sysdate9. &systime"; title2 j=l font='Courier New' h=8pt "&titleName4"; footnote j=l font='Courier New' h=8pt "&saveWordDoc..rtf" j=r "Page ^{thispage} of ^{lastpage}" ; proc report nowd center spanrows missing split='^' data=all list out=test style(report)=[width=100% 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 vid roworder rowlabel ("p-value^{super 1} LS Means^{unicode delta???} (95% CI)" col_4); define _PB_page/group noprint;
... View more