Date: Fri, 18 Oct 2002 18:38:56 -0500
Reply-To: aldi@wubios.wustl.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Aldi Kraja <aldi@WUBIOS.WUSTL.EDU>
Organization: WU
Subject: Re: how to wrap long text lines into multiple lines
Content-Type: text/plain; charset=us-ascii; format=flowed
There are many things you can do in SAS. The simplest one is use:
write somewhere at the top of your program the following
options ls=72 nocenter;
So you are telling SAS, I want my page to be of 72 columns (linesize)
and left align my results.
Another way is to use ODS pdf or ODS html: do a search on these two key
words in www.sas.com and you will find a solution.
HTH,
Aldi
Rose wrote:
> Greeting to all,
> e.g. I have a data set, 10 records and just one variable, this
> variable is text describtion and some of the records are too long to
> print in one paper. It is shown on SAS output, but some lines will not
> be print totally if they are longer than the paper. my question is how
> can I wrap this variable into multiple lines when SAS output them.
>
> thank you.
>
> Rose
|