| Date: | Tue, 9 Mar 2004 07:46:10 -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 BLANK LINE IN A REPORT WITHIN A VARIABLE VALUE |
| 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
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
|