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 (October 2006, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 3 Oct 2006 09:44:23 -0400
Reply-To:   "Kevin F. Spratt" <Kevin.F.Spratt@DARTMOUTH.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Kevin F. Spratt" <Kevin.F.Spratt@DARTMOUTH.EDU>
Subject:   Help with ODS
Content-Type:   text/plain; charset="us-ascii"; format=flowed

I am a novice with ODS and have used the code below to output a table generated by proc tabulate. The table is too wide for the page and I'm wondering how I can make the table print out in landscape rather than portrait and how I might be able to make the font smaller so that each table, which has 14 columns, will fit on a single sheet.

I realize one I open the file I can use word to change these things, and I'm happy to do this on all of the tables as long as I can keep the tables from splitting as part of the original print.

I'm running SAS 9.1.2 on Windows XP if that makes a difference.

ODS RTF FILE= "C:\TABLE1.RTF" ;

PROC TABULATE DATA=WORK.TABLE1;

CLASS ICC TORDER DIRECTION MEASURE TYPE LEVEL GROUP;

VAR SCORE;

TABLE ICC*DIRECTION*MEASURE,TYPE*LEVEL,GROUP*TORDER=' '*SCORE=' '*MEAN=' '*F=6.3; RUN;

ODS rtf close;

______________________________________________________________________

Kevin F. Spratt, Ph.D. Department of Orthopaedic Surgery Dartmouth Medical School One Medical Center Drive DHMC Lebanon, NH USA 03756 (603) 653-6012 (voice) (603) 653-6013 (fax) (603) 252-5922 (cell) Kevin.F.Spratt@Dartmouth.Edu (e-mail) _______________________________________________________________________


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