LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (August 2009, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 3 Aug 2009 07:56:58 -0700
Reply-To:   Wing <Wing9897@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Wing <Wing9897@HOTMAIL.COM>
Organization:   http://groups.google.com
Subject:   Proc Report: Columns and RTF
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

Hello,

I would like to have the 50 observations evenly distributed into 3 columns for a rtf report. However, the code below puts 31 observations into the 1st column and the remaining observations into the 2nd column. Any suggestions would be welcomed. Thanks.

data temp; do i=1 to 50; Order= i; output; end; run;

ods rtf columns=3;

proc report data=temp nowd headline headskip split='/'; column Order i; define Order / order 'Order'; define i / 'i'; run;

ods rtf close;


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