Date: Wed, 10 Mar 2004 06:19:42 -0800
Reply-To: sas programmer <sasprogrammer@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: sas programmer <sasprogrammer@HOTMAIL.COM>
Organization: http://groups.google.com
Subject: How to insert a line in proc report in a given variable
Content-Type: text/plain; charset=ISO-8859-1
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