Date: Wed, 10 Mar 2004 15:45:23 +0100
Reply-To: "Groeneveld, Jim" <jim.groeneveld@VITATRON.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Groeneveld, Jim" <jim.groeneveld@VITATRON.COM>
Subject: Re: How to insert a line in proc report in a given variable
Content-Type: text/plain; charset="iso-8859-1"
Hi James,
Sorry, your Q is far from clear, your sentences don't have correct punctuation. Indicate exactly what you have and what you want to have. What should the inserted line contain and where should it be placed in the table?
Regards - Jim.
--
. . . . . . . . . . . . . . . .
Jim Groeneveld, MSc.
Biostatistician
Science Team
Vitatron B.V.
Meander 1051
6825 MJ Arnhem
Tel: +31/0 26 376 7365
Fax: +31/0 26 376 7305
Jim.Groeneveld@Vitatron.com
www.vitatron.com
My computer remains home, but I will attend SUGI 2004.
[common disclaimer]
-----Original Message-----
From: sas programmer [mailto:sasprogrammer@HOTMAIL.COM]
Sent: Wednesday, March 10, 2004 15:20
To: SAS-L@LISTSERV.UGA.EDU
Subject: How to insert a line in proc report in a given variable
HI
ALL I want to insert a line in the VARIABLE PREFERRED TERM MY CODE IS
GIVEN BELOW , Please help.
Investigator Patient Preferred Term Intensity Serious
Causality
5203 1066 BILATERAL Mild Relation
MEMBRANE
RETRACTION
5203 1066 ELEVATED BLOOD without sequelae
PRESSURE
relation
5203 1067 BURNING IN
NOSE AFTER
relation
proc report data=test7 nowd headline headskip ps=32 ls=132 split='*'
spacing=1;
column invid subj aeterm aesev aeser AEREL dayonr AEACN aeout ;
define invid / width=12 left 'Investigator';
define subj / width=8 left 'Patient';
define aeterm / width=15 flow left 'Preferred Term/*Reported Term ';
define aesev / width=10 left flow'Intensity';
define aeser / width=10 left flow 'Serious' ;
define AEREL/ width=10 left flow 'Causality';
RUN;
THANKS IN ADVANCE FOR THE HELP
James Rhodes