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