|
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;
|