<?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: Inline CELLHEIGHT useage for RTF? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34603#M5001</link>
    <description>Nicole, &lt;BR /&gt;
Did you really try this already?&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file="d:\tabsas\lero.rtf";&lt;BR /&gt;
proc print data=a.classe style(obs)={cellpadding=0 fontsize=6pt};&lt;BR /&gt;
var datef/style(column)={cellpadding=0 fontsize=6pt};&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Andre</description>
    <pubDate>Fri, 11 Jun 2010 13:18:54 GMT</pubDate>
    <dc:creator>Andre</dc:creator>
    <dc:date>2010-06-11T13:18:54Z</dc:date>
    <item>
      <title>Inline CELLHEIGHT useage for RTF?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34602#M5000</link>
      <description>Hello, &lt;BR /&gt;
&lt;BR /&gt;
I have a simple ods rtf output statement:&lt;BR /&gt;
&lt;BR /&gt;
ods rtf file="temp.rtf" style=seasideprinter SASDATE ;&lt;BR /&gt;
proc print data=d1 noobs ;&lt;BR /&gt;
var ID TestDate ;&lt;BR /&gt;
Title "Data Listing";&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
&lt;BR /&gt;
In the output RTF file, I want the row heighth to be taller than the standard row height for the template (the person I'm giving it to needs room to make notes in the cells).  I would prefer not to go through proc template to make this happen.  I've tried inline ods with escape characters and the CELLHEIGHT ods style keyword, etc. with no luck.  I thought I would ask if it is even possible to do this in an inline fashion, or if I will have to go through proc template.&lt;BR /&gt;
&lt;BR /&gt;
Thank you, &lt;BR /&gt;
&lt;BR /&gt;
Nicole</description>
      <pubDate>Fri, 11 Jun 2010 12:33:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34602#M5000</guid>
      <dc:creator>NWV</dc:creator>
      <dc:date>2010-06-11T12:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Inline CELLHEIGHT useage for RTF?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34603#M5001</link>
      <description>Nicole, &lt;BR /&gt;
Did you really try this already?&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file="d:\tabsas\lero.rtf";&lt;BR /&gt;
proc print data=a.classe style(obs)={cellpadding=0 fontsize=6pt};&lt;BR /&gt;
var datef/style(column)={cellpadding=0 fontsize=6pt};&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Andre</description>
      <pubDate>Fri, 11 Jun 2010 13:18:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34603#M5001</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2010-06-11T13:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Inline CELLHEIGHT useage for RTF?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34604#M5002</link>
      <description>And in addition to increasing cellpadding, just using the CELLHEIGHT attribute works for me.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file="c:\temp\cellheight.rtf" style=seasideprinter SASDATE ;&lt;BR /&gt;
  proc print data=sashelp.class(obs=3) noobs &lt;BR /&gt;
    style(data)={cellheight=2in};&lt;BR /&gt;
    var name age height weight ;&lt;BR /&gt;
    Title "Data Listing";&lt;BR /&gt;
  run;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 11 Jun 2010 14:20:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34604#M5002</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-06-11T14:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Inline CELLHEIGHT useage for RTF?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34605#M5003</link>
      <description>Thank you both for your answers.  Cynthis--yours is what I was looking for--just couldn't get the syntax right.  It seemed like there should be a way to make that simple change without going through proc template--and there is.  It worked for me.  Thank you!&lt;BR /&gt;
Nicole</description>
      <pubDate>Fri, 11 Jun 2010 14:38:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Inline-CELLHEIGHT-useage-for-RTF/m-p/34605#M5003</guid>
      <dc:creator>NWV</dc:creator>
      <dc:date>2010-06-11T14:38:37Z</dc:date>
    </item>
  </channel>
</rss>

