Date: Tue, 24 Jul 2007 08:42:58 -0700
Reply-To: Raj <ramesh.chakri@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Raj <ramesh.chakri@GMAIL.COM>
Organization: http://groups.google.com
Subject: Supress by group variables in proc report output
Content-Type: text/plain; charset="iso-8859-1"
roc report data=xyz
column A B C;
by A;
DEFINE A /ORDER NOPRINT;
define B /ORDER style=[just=c cellwidth=0.6in
asis=on]style(header)=[just=c] "SUBNUM";
define C / display style=[just=c cellwidth=0.6in
asis=on]style(header)=[just=c] "Treatment";
COMPUTE BEFORE A;
LINE " " ;
ENDCOMP;
run;
How to supress by group variable appearing on top of every page in the
RTF ??
|