Date: Fri, 18 Dec 1998 10:34:27 +0100
Reply-To: "Sida, Teodora" <Teodora.Sida@IKD-ULM.DE>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "Sida, Teodora" <Teodora.Sida@IKD-ULM.DE>
Subject: WG: Proc Forms
Content-Type: text/plain; charset="iso-8859-1"
Hi,
can enybody help me ?
I have to print some adress labels. The problem is when a field is longer
than the
to printing line it cut's my field . How can I tell him to cut at the and of
a word like
Proc Report with the "flow" option ?
My program :
PROC FORMS DATA=work.result2
LINES=8 DOWN=1 NDOWN=8 NACROSS=4 INDENT=1 WIDTH=32 BETWEEN=1 SKIP=1
PAGESIZE=72 COPIES=1 ALIGN=4;
FORMAT rgname $30. rgname2 $30. name $30. vname $30. strnam $20. bsstrnnu
4. ort $24.;
LINE 1 rgname ;
LINE 2 rgname2 ;
LINE 3 vname name / PACK ;
LINE 4 strnam bsstrnnu / PACK ;
LINE 6 plz ort / PACK;
RUN;
example of the problem:
This is my first line a --- it separates "and" in "a" and
"nd" .
nd djfhgjsdhgs
...
Thank you,
Teodora
|