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 (May 2008, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: "P. Cristian Gugiu" <crisgugiu@YAHOO.COM>
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 ********************************************************** ;


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