<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Don't want to cut a table in ods rft in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Don-t-want-to-cut-a-table-in-ods-rft/m-p/560706#M156863</link>
    <description>&lt;P&gt;Hi:&lt;BR /&gt;Without data and without a complete program, nobody can run you code. Many of the options you specify will be completely ignored by ODS RTF, in particular, headline, headskip, spacing formchar are all irrelevant to RTF.&lt;BR /&gt;&lt;BR /&gt;You have style overrides multiple times for header and column and that is just going to cause inheritance resolution issues. Why not have 1 single style override for header and then another one for column, instead of what you show.&lt;BR /&gt;&lt;BR /&gt;If you're using the JOURNAL style, why both setting the background color fo the header to gray? the whole purpose of JOURNAL is to be a black and white style. &lt;BR /&gt;&lt;BR /&gt;Any unit of measure you specify, such as inches or cm for cellheight will be translate into TWIPS for RTF -- or twentieths of a printer's point. I can't really see what you're showing in your screen shot because when I run a version of your code using SASHELP.CLASS, I don't have any height problems.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test_table_rtf.png" style="width: 434px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29689i7097EB5E13B12056/image-size/large?v=v2&amp;amp;px=999" role="button" title="test_table_rtf.png" alt="test_table_rtf.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Cynthia&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 22 May 2019 02:26:15 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-05-22T02:26:15Z</dc:date>
    <item>
      <title>Don't want to cut a table in ods rft</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Don-t-want-to-cut-a-table-in-ods-rft/m-p/560700#M156860</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm create tables using proc report, and extract it for ods rtf.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, When I use cellheight= option in style(column), the table was cut.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="캡처.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29688i76485B1B5E874955/image-size/large?v=v2&amp;amp;px=999" role="button" title="캡처.PNG" alt="캡처.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Like this !!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is a part of my code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options orientation=landscape;

ods listing close ;
ods escapechar='^';
ods rtf file="&amp;amp;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];&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;How can I solve this Problem???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, Answer Me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 01:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Don-t-want-to-cut-a-table-in-ods-rft/m-p/560700#M156860</guid>
      <dc:creator>J_hoon</dc:creator>
      <dc:date>2019-05-22T01:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Don't want to cut a table in ods rft</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Don-t-want-to-cut-a-table-in-ods-rft/m-p/560706#M156863</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;Without data and without a complete program, nobody can run you code. Many of the options you specify will be completely ignored by ODS RTF, in particular, headline, headskip, spacing formchar are all irrelevant to RTF.&lt;BR /&gt;&lt;BR /&gt;You have style overrides multiple times for header and column and that is just going to cause inheritance resolution issues. Why not have 1 single style override for header and then another one for column, instead of what you show.&lt;BR /&gt;&lt;BR /&gt;If you're using the JOURNAL style, why both setting the background color fo the header to gray? the whole purpose of JOURNAL is to be a black and white style. &lt;BR /&gt;&lt;BR /&gt;Any unit of measure you specify, such as inches or cm for cellheight will be translate into TWIPS for RTF -- or twentieths of a printer's point. I can't really see what you're showing in your screen shot because when I run a version of your code using SASHELP.CLASS, I don't have any height problems.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test_table_rtf.png" style="width: 434px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29689i7097EB5E13B12056/image-size/large?v=v2&amp;amp;px=999" role="button" title="test_table_rtf.png" alt="test_table_rtf.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Cynthia&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 02:26:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Don-t-want-to-cut-a-table-in-ods-rft/m-p/560706#M156863</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-05-22T02:26:15Z</dc:date>
    </item>
  </channel>
</rss>

