LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 1998, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page