|
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
|