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 (July 2006, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 18 Jul 2006 17:09:38 -0400
Reply-To:     Sigurd Hermansen <HERMANS1@WESTAT.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Sigurd Hermansen <HERMANS1@WESTAT.COM>
Subject:      SAS ODS style (vertical column labels)
Content-Type: text/plain; charset="us-ascii"

Fellow SAS-Lers: I am attempting to squeeze a tabular listing from PROC SUMMARY into a page width. PROC PRINT does that by printing to the list file with vertical column labels, but I don't seem to be able to convince ODS pdf or rtf to do the same. The VAR statement with a style option runs without complaint, but leaves the column labels horizontal.

ods pdf body="\\RK9\VOL903\NCI9189\Tasks\ICD\NDI_COD_Underlying.pdf"; options ls=132 orientation=landscape; title 'Underlying Cause of Death Summary'; proc print data=lib.CODSmry; var _all_ / style(header)= vertical_header; sum _freq_; run; ods pdf close;

I've also tried Louise Hadden's macroprogram form NESUG 17. It rewrites an rtf document. I'd prefer to avoid setting up PROC TEMPLATE stylesheet overrides for this limited problem. Any quick solutions or better strategies? Sig


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