| Date: | Thu, 6 Nov 2008 06:30:07 -0800 |
| Reply-To: | justin.grondines@QUINTILES.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | justin.grondines@QUINTILES.COM |
| Organization: | http://groups.google.com |
| Subject: | Re: ODS RTF - raw code for table cells? |
|
| Content-Type: | text/plain; charset=ISO-8859-1 |
Hi again,
I will try to be more clear. I output my dataset using ODS RTF with
proc report: Often I use the TITLE statement for the Header and It
work well, but for this customer TITLE2 is very long so I want to have
the center cell much bigger than the 2 others. As far as I know, i
cannot use the cellwidth option in the TITLE statement.
title1 j=l "TITLE1"
j=c "TITLE2"
j=r "Page ^{pageof}";
now I am trying to create my header in the proc report instead by
using in-line formatting and it does not work well so far. Do you have
any suggestions for this kind of problem? I need some help for in-line
formatting.
compute before _page_ / style={protectspecialchars=off};
line "{\trowd\trql\cellx1500\intbl\ql{TITLE1\cell}\trql
\cellx10000\intbl\qc{TITLE2\cell}\trql\cellx1000\intbl
\qr{TITLE3\cell}
{\row}\pard}";
endcomp;
thank you
Justin
|