Date: Mon, 27 Oct 2008 11:22:01 -0700
Reply-To: shanky <shankardasm@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: shanky <shankardasm@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Turn off line-wrapping option in SAS
Content-Type: text/plain; charset=ISO-8859-1
Hi,
You could use width=min option on the proc print statement.
Shankar
On Oct 24, 3:02 pm, parde...@GHC.ORG ("Pardee, Roy") wrote:
> FWIW--one way to get around this is to switch to the ODS HTML destination. So--wrap your proc print in something like:
>
> ods html path = "\\bibbity\bobbity" (URL=NONE)
> body = "boo.html"
> (title = "Boo Output")
> ;
>
> run ;
> ods html close ;
>
> That will let you side-scroll to your heart's content. ;-)
>
> HTH,
>
> -Roy
>
>
>
> -----Original Message-----
> From: SAS(r) Discussion [mailto:SA...@LISTSERV.UGA.EDU] On Behalf Of Rieza Soelaeman
> Sent: Friday, October 24, 2008 11:54 AM
> To: SA...@LISTSERV.UGA.EDU
> Subject: Turn off line-wrapping option in SAS
>
> Good afternoon,
> Does anyone know how to turn off the text/line-wrapping option in SAS? I'm doing proc print on observations that have 10 variables associated, and it's pretty annoying the way that SAS breaks the line and continues printing on the next line. I tried doing options ls=256; (the maximum # columns SAS will allow me), and that helps somewhat, but I'm still seeing my observations split on several lines.
>
> Thanks beforehand!
>
> Rieza- Hide quoted text -
>
> - Show quoted text -
|