LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (January 2003, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 6 Jan 2003 13:30:26 +0100
Reply-To:     WIELKI Andre <wielki@INED.FR>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         WIELKI Andre <wielki@INED.FR>
Subject:      Re: How to output previous spaces of value of variable in pdf
              file ( trouble with ODS PRINTER PDF output)?
Comments: To: Chunkui Sun <sun8699@HOME.COM>
In-Reply-To:  <DdeS9.183410$E_.178271@news02.bloor.is.net.cable.rogers.co m>
Content-Type: text/plain; charset="iso-8859-1"; format=flowed

> >I am not quite understand that "proc report does not accept modification of >template style table". Maybe I should look those examples via ods&report. > >Thanks again. > >Helen >*

Perhaps some general elements of style throught a proc template may be working but certainly not 'table' and the elements of style that are at your disposition are listed for example in the contribution of Lauren Haworth paper n°3 of Sugi 26

The elements/parts of style you can modify into the proc report code are calldef,column,hdr,header,hdr,lines,report,summary.

like in ods listing close; ods html body='report.htm'(url=none) path="d:\ods\htm"; title ' '; footnote ' '; proc report data=a.france nowd style(column calldef) = [foreground=black background=#66ffff font_style=roman font_size=10pt] style(header) = [foreground=black background=#ffcc33 font_weight=bold font_style=roman font_size=12pt] style(summary lines) = [foreground=black background=white font_weight=bold font_style=roman font_size=9pt]; title 'criminalité délinquance en france'; columns annee fcnT fctT; define annee/ group style=[foreground=#ffffcc background=blue font_weight=bold font_style=roman font_size=12pt]; define fcnt /sum ;define fctt /sum ; rbreak after /summarize; run; ods html close;

HTH Andre


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