Date: Fri, 3 Oct 2008 13:09:38 -0400
Reply-To: Ya Huang <ya.huang@AMYLIN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ya Huang <ya.huang@AMYLIN.COM>
Subject: Re: ods rtf output: how to increase output width?
Add options ls=150 will work (tested).
On Fri, 3 Oct 2008 12:53:27 -0400, Christine Peloquin <cep@STUNTZ.ORG>
wrote:
>hello.
>
>i am new to ods and am creating a rtf file. the orientation of my output
is
>landscape and i want to print a file that is 133 columns wide. currently,
>my output lines wrap (approximately around column 125 or so). is there any
>parameter i can set in the style definition (using proc template) to
>increase the output width?
>
>many thanks.
>christine
>
>a over-simplified, dumbed-down version of my code follows:
>
>options orientation=landscape;
>ods rtf file='c:\test2.doc' startpage=never style=rtf;
>
>data _null_;
> file print;
> raw_value = 3.4;
> count = 1025;
> freq = 23.7;
> put @1 "BME measurement" @82 raw_value @118 count @128 freq;
>run;
>
>ods rtf close;
>
>(in the above code, the freq variable shows up on the next line)
|