Date: Wed, 16 Aug 2000 09:18:19 -0400
Reply-To: "Fehd, Ronald J." <rjf2@CDC.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Fehd, Ronald J." <rjf2@CDC.GOV>
Subject: Re: Many tables on one page?
Content-Type: text/plain; charset="iso-8859-1"
> From: RobertS [mailto:strebor@MY-DEJA.COM]
> I'm trying to make SAS V8 print out 8 small tables (11 rows,
> 3 columns)
> including lables and titles on one single page (landscape, 2 rows with
> 4 tables each).
This will be a report writer task.
you need to know these three options:
%*1; options LineSize = 72 PageSize=50;
%*check with proc OPTIONS or Alt File Print Setup;
This is the example in SAS Language Ref V6 1e pg 351,
example 4 arranging the contents of an entire page.
DATA _NULL_;
%*2; file PRINT n=PAGESIZE;%*makes all lines on the page available to the
pointer;
do Col=1,40;
do Line = 1 to 20;
set INFO;
%*3; put #line @col Name $20. +1 phone 4.; end;
%*do Col;end;
put _page_;
run;
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
---> cheerful provider of SAS code direct from the manual !*! <---
archives: http://www.listserv.uga.edu/archives/sas-l.html