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;