|
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)
_______________________________________________________________________
|