Date: Tue, 22 Jul 2008 11:42:39 -0400
Reply-To: SAS_learner <proccontents@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: SAS_learner <proccontents@GMAIL.COM>
Subject: Re: Option to increase the width of the Log
In-Reply-To: <482249F865060740AE33815802042D2F8E8574@LTA3VS012.ees.hhs.gov>
Content-Type: text/plain; charset=ISO-8859-1
Hello Ronald ,
Yeup you are right
I think I Solved it ( I am not sure I run all the reports ) but used the
option of overwriting the global options with the Local like
options linesize = max;
my Program ;
options linesize = 80;
Proc Compare base = a compare = b ;
run;
options linesize = max;;
This gives linesize of sas output of 80 and remaining max line size right
thanks
SL
On Tue, Jul 22, 2008 at 11:35 AM, Fehd, Ronald J. (CDC/CCHIS/NCPHI) <
rjf2@cdc.gov> wrote:
> SAS_learner:
>
> as far as I know there are not separate linesize options for log and
> print.
>
> options is a global statement so it applies,
> immediately,
> to the step where it is used.
>
> Ron
>
>
> ________________________________
>
> From: SAS_learner [mailto:proccontents@gmail.com]
> Sent: Tuesday, July 22, 2008 11:32 AM
> To: Fehd, Ronald J. (CDC/CCHIS/NCPHI)
> Cc: SAS-L@listserv.uga.edu
> Subject: Re: Option to increase the width of the Log
>
>
> Hello Ronald,
>
> Thanks for the Option it is what I am looking for , but as you
> said it is messing up my Output too is there a way to limit options
> linesize = max; Just to Log
>
> I am using Proc Printto to Print my Log , Or If there is way
> to Overwrite the global Linezine options to normal line when my proc
> compare starts , My Program is has follow
>
> %include setup ;<--- This has all the Libraries and template
> Program here is where Proc Printto log = c:\temp.log is included then ;
>
> data .................;
> .
> .
> .
> Proc compare data = a compare = b ; Run;
> Proc Report and Proc Compare report where I compare here the
> defalut Proc compare is getting messed up .
>
> thanks for the help
>
>
> On Mon, Jul 21, 2008 at 4:56 PM, Fehd, Ronald J.
> (CDC/CCHIS/NCPHI) <rjf2@cdc.gov> wrote:
>
>
> > From: SAS_learner
>
> >
> > Just not sure how to frame my question,
> >
> > What I am doing is make LOG Report (ERRORS WARNINGS)
> . Now If I have
> > warning say
> >
> > WARNING: Use of CELLWIDTH/OUTPUTWIDTH= in a spanning
> header
> > or footer will
> > rarely yield expected results. For conventional usage,
> specify
> > outputwidth only for the data column cells.
> >
> > The above message is printed in three different lines
> and
> > when I need to
> > pick them for my report I am having a problem .
> >
> > But is there an option to increase the default width
> of the
> > Log where it would make it has one long line
> >
> > Thank all for the help
> > SL
>
>
> options linesize = max;
>
> but that applies to log and print
>
> PROC Options define value option = linesize;
> PROC Options define value option = ovp;*OverPrint Errors
> and Warnings;
>
> ovp is a command-line option
> you have to add it to your SASv9.cfg:
>
> -noovp
>
> Peter Crawford both wonder why the Windows default
> setting of ovp is
> still ovp
> and not noovp
>
> Note this option was used to OverPrint a line twice more
> on a dot-matrix
> or other types of impact printers
> which resulted in the line appearing as bold.
>
> Ron Fehd the macro maven CDC Atlanta GA USA RJF2 at
> cdc dot gov
>
>
|