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 (December 2002, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 5 Dec 2002 00:26:05 -0800
Reply-To:     Franz <franz_cl2003@YAHOO.FR>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Franz <franz_cl2003@YAHOO.FR>
Subject:      deleting a blank row in proc report
Content-Type: text/plain; charset=us-ascii

Dear all,

I hope you could be able to help even if I am just sending a piece of my program. The problem is I am getting a blank row after textrow (even though this was not stated in my COMPUTE BEFORE). How can I delete it. Many thanks, Franz.

PROC REPORT DATA = report nowd headline missing headskip split= '*'; COLUMN ( "Number (%) subjects" '__' textrow textr text col (trt ,('__' (count percent))));

DEFINE col / 'Characteristic' group order=data width=35 format=col. left; DEFINE trt / group across order=data ''; DEFINE count / 'N' width=8 format=3. center ; DEFINE percent/ '%' width=10 format=5.2 left format=pct.; DEFINE text / noprint group order=data; DEFINE textrow/ noprint group order=data; DEFINE textr / noprint group order=data;

BREAK after text / skip;

COMPUTE BEFORE textrow; line @1 textrow $35.; ENDCOMP; COMPUTE BEFORE textr; line @1 textr $35.; ENDCOMP; RUN;

__________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com


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