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 17:10:49 -0500
Reply-To:     Deborah Wentworth <debby@CCBR.UMN.EDU>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Deborah Wentworth <debby@CCBR.UMN.EDU>
Subject:      underlining columns names, proc report
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed

Greetings -

I have a question I hope someone might be able to help me with.

I have a table where the labels "Group A" and "Group B" each span 2 columns containing counts and rates. I have been trying unsuccessfully to figure out the syntax to underline those 2 labels.

My code is below - I'm using ODS to save this as an .rtf file. Is it possible (at least without too much difficulty) to underline the Group column headers ?

proc report data=allevents ; column event ("Group A" gpAev gpArate ) ("Group B" gpBev gpBrate) ; define event / order ' ' left flow style(column) = {just=l cellwidth=12 cm}; define gpAev / 'No.' format = 3.0 style(column) = {just=r cellwidth=1.0 cm} ; define gpArate / 'Rate' format = 5.2 style(column) = {just=r cellwidth=1.2 cm} ; define gpBev / 'No.' format = 3.0 style(column) = {just=r cellwidth=1.0 cm} ; define gpBrate / 'Rate' format = 5.2 style(column) = {just=r cellwidth=1.2 cm} ;

Thanks so much in advance.

Deb

>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|< > < > Deborah Wentworth < > Coordinating Centers for Biometric Research < > Division of Biostatistics, University of Minnesota < > 612.626.9005 < > < >|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<>|<


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