Date: Mon, 26 May 2008 12:14:16 -0500
Reply-To: paul@WUBIOS.WUSTL.EDU
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Paul Thompson <paul@WUBIOS.WUSTL.EDU>
Subject: Re: Indenting output directed to log with %put
In-Reply-To: <200805260209.m4PAl2x4030920@malibu.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed"
Quoting "P. Cristian Gugiu" <crisgugiu@YAHOO.COM>:
> Quick question for anyone still working on Sunday. How can I control the
> spacing of statements I direct to the log? I would like the following
> statement indented 5 spaces. Thanks, Cristian
>
> %put Number of variables = &v Sample size = &n;
>
What I would do is create a little box with asterisks.
%put ********************************************************** ;
%put * Number of Vars: &v ;
%put * Sample size: &n ;
%put ********************************************************** ;