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 (October 2008, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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?
Comments: To: Christine Peloquin <cep@STUNTZ.ORG>

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)


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