Hi:
I want to control the borderstyle in the rtf table. The following figure is my want. But I don't know how to achieve it. Thanks.
proc template;
define style Test / store = SASUSER.TEMPLAT;
parent = styles.printer;
style table from table /
borderbottomstyle = dotted
bordertopstyle = inset
borderstyle = dotted
width = 100%
frame = box;
end;
run;
ods rtf file='D:\temp.rtf' bodytitle style=test;
proc print data=sashelp.class(firstobs=1 obs=5) noobs label;
run;
ods rtf close;
Zhaosi,
This is another element:
proc template;
define style Test / store = SASUSER.TEMPLAT;
parent = styles.printer;
style table from table /
borderbottomstyle = dotted
bordertopstyle = dotted
borderstyle = dotted
width = 100%
frame = box;
style header from header/
borderbottomstyle = inset
bordertopstyle = inset
;
end;
run;
quit;
André
Andre,
Thanks for your element. It's useful. But still cannot solve all my problem. The last line still be dotted. I want it to be inset. Thank you all the same.
tableelements are dotted or with inset
if you set this for table
borderbottomstyle = inset
you see immediately that every bottom line is with inset!
I see no solution
as ods text= will trace eventually a line 1 cm lower!
and footnote would be to lower
André
Uh, I think so. Thanks again.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.