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 (January 2004, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 27 Jan 2004 07:28:16 -0800
Reply-To:     chris <fast_rabbit@GMX.CH>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         chris <fast_rabbit@GMX.CH>
Organization: http://groups.google.com
Subject:      ods rtf: adding border to a specific row
Content-Type: text/plain; charset=ISO-8859-1

I run into the problem that I want to add a line between two rows of a table but not having any other lines in that table. The code below produces a table with no borders at all. Anybody some idea?

Thanks Chris

proc template; define style styles.testrtf; parent=styles.rtf; style Table from Output / Background=_Undef_ rules=none frame=void; style Header from Header / Background=_Undef_; style Rowheader from Rowheader / Background=_Undef_; end; run;

data a; length a $70;

a="first row"; output; a="second row"; output; a="^R/RTF'\tsbrdrb " || "row with border"; output; a="forth row"; output;

ods escapechar='^'; ods rtf file="C:/temp/out.rtf" style=testrtf; proc print data=a noobs; run; ods rtf close;


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