Date: Fri, 24 Aug 2007 11:21:18 -0400
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: inserting blank rows
Another "trick" would be the usage of PROC REPORT. There you have some
options to skip lines between groups and subgroups, also with summaries,
over- and underlines, skip pages, ...
That should be easier as inserting missing values.
Gerhard
On Fri, 24 Aug 2007 08:11:22 -0700, Terjeson, Mark <Mterjeson@RUSSELL.COM>
wrote:
>Hi,
>
>If you are referring to all of the rows
>then you can uses a PROC PRINT option
>called DOUBLE:
>
>
>proc print data=sashelp.class DOUBLE;
>run;
>
>
>If you mean conditionally add a blank
>row at certain places then you will have
>to conditionally check where you want an
>extra row, then set all the variables to
>missing, have options missing=' '; if you
>have any numeric variables, and then output
>the extra blank rows where you manually
>put them.
>
>
>Hope this is helpful.
>
>
>Mark Terjeson
>Senior Programmer Analyst, IM&R
>Russell Investments
>
>
>Russell Investments
>Global Leaders in Multi-Manager Investing
>
>
>
>
>
>
>-----Original Message-----
>From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
>wcw2
>Sent: Friday, August 24, 2007 8:03 AM
>To: SAS-L@LISTSERV.UGA.EDU
>Subject: inserting blank rows
>
>how can I insert a blank row between different values in a variable?
>(preferably using proc print to output).
|