<?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: ODS PPT Adjust Height of Table Cells to fit more rows in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672102#M201932</link>
    <description>&lt;P&gt;Please show us the code you are using to create the table(s).&lt;/P&gt;
&lt;P&gt;There are a number of options available but they can depend on exactly how the tables are built.&lt;/P&gt;
&lt;P&gt;You should also show all of the ODS destination options you are using.&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jul 2020 14:46:31 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-07-24T14:46:31Z</dc:date>
    <item>
      <title>ODS PPT Adjust Height of Table Cells to fit more rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672101#M201931</link>
      <description>&lt;P&gt;Hello Smart People&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to fit more rows of tables into a slide via ODS PPT. Somehow I cannot adjust the height of cells, even I have used the smallest font possible (0.1). Set cellheight in proc template does not work with ODS ppt either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see the attached snapshot of the table. You can see a lot of space on top or below the numbers in the cells. How do we get rid of vertical spaces to be able to fit more rows?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 14:44:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672101#M201931</guid>
      <dc:creator>radiate2357</dc:creator>
      <dc:date>2020-07-24T14:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PPT Adjust Height of Table Cells to fit more rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672102#M201932</link>
      <description>&lt;P&gt;Please show us the code you are using to create the table(s).&lt;/P&gt;
&lt;P&gt;There are a number of options available but they can depend on exactly how the tables are built.&lt;/P&gt;
&lt;P&gt;You should also show all of the ODS destination options you are using.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 14:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672102#M201932</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-07-24T14:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PPT Adjust Height of Table Cells to fit more rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672105#M201934</link>
      <description>proc template ;&lt;BR /&gt;define style styles.teststyle1 ;&lt;BR /&gt;parent = styles.powerpointlight ;&lt;BR /&gt;class SystemTitle / font_size=23pt font_face="Arial" ;&lt;BR /&gt;class SystemTitle2 / font_size=18pt font_face="Arial" ;&lt;BR /&gt;class table / cellspacing=0pt cellpadding=0pt bordercolor=gray rules=all&lt;BR /&gt;frame=hsides cellheight=0.1in;&lt;BR /&gt;class header / fontsize=0.2 background=white foreground=black&lt;BR /&gt;fontweight=bold;&lt;BR /&gt;class data / fontsize=0.1 fontweight=medium just=left;&lt;BR /&gt;end;&lt;BR /&gt;run ;&lt;BR /&gt;&lt;BR /&gt;ods powerpoint file="&amp;amp;defaultpath.\&amp;amp;filenm..ppt" image_dpi=720&lt;BR /&gt;style=styles.teststyle1 ;&lt;BR /&gt;&lt;BR /&gt;ods region height=2.5in width=6in ;&lt;BR /&gt;title1 ;&lt;BR /&gt;title2 ;&lt;BR /&gt;footnote1 ;&lt;BR /&gt;filename getgraph "&amp;amp;GraphPath.\antenna-plot6_&amp;amp;i.-11.png" ;&lt;BR /&gt;proc gslide iframe= getgraph imagestyle=fit gout=graphics ;&lt;BR /&gt;run ;&lt;BR /&gt;quit ;&lt;BR /&gt;&lt;BR /&gt;ods region height=0.1in;&lt;BR /&gt;proc odstext;&lt;BR /&gt;p "" / style=[FONT_SIZE=1];&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods region height=6in width=10in;&lt;BR /&gt;&lt;BR /&gt;proc report data=test2 split='@' ;&lt;BR /&gt;columns trtn trt statn statc &amp;amp;vislst ;&lt;BR /&gt;define trtn / order order=internal noprint;&lt;BR /&gt;define trt / order width=20 left 'Treatment';&lt;BR /&gt;define statn / order noprint ;&lt;BR /&gt;define statc / display width=20 left ' ' ;&lt;BR /&gt;%do j = 1 %to &amp;amp;nvars ;&lt;BR /&gt;define &amp;amp;&amp;amp;&amp;amp;vis&amp;amp;j / display width=10 left "Week &amp;amp;&amp;amp;&amp;amp;vislabl&amp;amp;j"&lt;BR /&gt;run ;&lt;BR /&gt;%end ;&lt;BR /&gt;ods layout end;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jul 2020 14:52:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-PPT-Adjust-Height-of-Table-Cells-to-fit-more-rows/m-p/672105#M201934</guid>
      <dc:creator>radiate2357</dc:creator>
      <dc:date>2020-07-24T14:52:46Z</dc:date>
    </item>
  </channel>
</rss>

