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 (August 2000, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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?
Comments: To: RobertS <strebor@MY-DEJA.COM>
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


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