Hi there. I'm create tables using proc report, and extract it for ods rtf. But, When I use cellheight= option in style(column), the table was cut. Like this !! this is a part of my code. options orientation=landscape;
ods listing close ;
ods escapechar='^';
ods rtf file="&Save\Table.rtf"
style=journal BODYTITLE STARTPAGE=YES;
title1 font='Times new roman' height=12pt "Table";
title2 font='Times new roman' height=12pt "Population: Safety Analysis Set";
proc report data=final ls=200 nowd headline headskip formchar (2)="_" spacing=1 split='|' missing out=out
style(report)=[outputWidth=100%]
style(header column lines)=[vjust=c fontsize=10pt font_face='Times New Roman' color=black]
style(header) =[just=c font_weight=medium cellheight=0.97cm font_face='Times New Roman' font_style= ROMAN bordertopcolor=black borderbottomcolor=black bordertopwidth=0.5pt borderbottomwidth=0.5pt background=#BFBFBF]
style(column) =[just=c cellheight=0.6cm]; How can I solve this Problem??? Please, Answer Me 🙂 Thank you.
... View more