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 (March 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, 7 Mar 2008 04:45:08 -0500
Reply-To:   Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject:   Re: Double Line Spacing

On Fri, 7 Mar 2008 01:05:40 -0800, RAMS <ramsathish@GMAIL.COM> wrote:

>Dear all, > > Like a keyword "double" in Proc Print, is there anyohter >keyword which can be used in data step to get a double line spacing. > >Thanks & Regards, > >Ramsathish S

What do you mean with "double line spacing in DATA step"?? Only in a reporting proc lice print that might be useful, but a data-step is a data- manipulation tool. It is not good to insert records of missing variables, if that is what you'r thinking of. If you use a DATA _NULL_ step with PUT as reporting tool, just use a / in put for a cr-line feed, // for two.

data _null_; set something; file print; put a line .. //; run;

Gerhard


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