<?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: Table height in ods powerpoint in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500308#M21833</link>
    <description>&lt;P&gt;Google:&amp;nbsp;sas table height in ods powerpoint&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/SAS5443-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/SAS5443-2016.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not much else we can say as no example given, no test data (form of datastep), what needs to come out, example output, what code you have etc.&lt;/P&gt;</description>
    <pubDate>Mon, 01 Oct 2018 11:45:49 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-10-01T11:45:49Z</dc:date>
    <item>
      <title>Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500306#M21832</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I want to change the table height in ods powerpoint.&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Oct 2018 11:39:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500306#M21832</guid>
      <dc:creator>akash1088</dc:creator>
      <dc:date>2018-10-01T11:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500308#M21833</link>
      <description>&lt;P&gt;Google:&amp;nbsp;sas table height in ods powerpoint&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/SAS5443-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/SAS5443-2016.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not much else we can say as no example given, no test data (form of datastep), what needs to come out, example output, what code you have etc.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 11:45:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500308#M21833</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-01T11:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500312#M21834</link>
      <description>I have used many options&lt;BR /&gt;1) height in ods layout gridded&lt;BR /&gt;2) cellwidth in style(column)&lt;BR /&gt;3) ods graphic on height&lt;BR /&gt;But know if above are working.&lt;BR /&gt;I don't know specific reason for this is anybody knows then please guide me .</description>
      <pubDate>Mon, 01 Oct 2018 11:53:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500312#M21834</guid>
      <dc:creator>akash1088</dc:creator>
      <dc:date>2018-10-01T11:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500317#M21835</link>
      <description>&lt;P&gt;Examples, code, logs, outputs?&amp;nbsp; You have all this information, we have none of this information, how can we answer the question?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 12:07:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500317#M21835</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-01T12:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500323#M21836</link>
      <description>&lt;P&gt;This is the code&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data m;
infile datalines dlm=',';
input name:$25. num ;
datalines;
ABCD,0.20
EFG,0.17
HIG,0.32
ghf,0.24
;
run;


goptions device=png;
ods powerpoint file='twotable.pptx' nogtitle nogfootnote;
ods layout gridded columns=2 column_widths=(50% 50%)  column_gutter=.1pct;
ods region ;
proc Report data=m
style(column)=[cellheight=2in]
style(report)={outputwidth=100%};
run;
ods region ;
proc Report data=m
style(report)={outputwidth=100%};
define name /style(column)={height=8pt};
run;
ods layout end;
ods powerpoint Close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Oct 2018 12:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500323#M21836</guid>
      <dc:creator>akash1088</dc:creator>
      <dc:date>2018-10-01T12:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500333#M21837</link>
      <description>&lt;P&gt;Interesting, I can't create pptx files from my SAS, probably because its MS proprietary as usual and backend if linux.&amp;nbsp; So afraid I am going to have to leave this open for someone else to pick up.&amp;nbsp; Only thing I could see that might help is this article:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sgf/2017/11/17/ods-destination-powerpoint-new-option/" target="_blank"&gt;https://blogs.sas.com/content/sgf/2017/11/17/ods-destination-powerpoint-new-option/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Which seems to indicate setting;&lt;/P&gt;
&lt;PRE&gt;ods graphics / width=4.5in height=4in;
&lt;/PRE&gt;
&lt;P&gt;Can't test though.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 12:40:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500333#M21837</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-01T12:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500432#M21838</link>
      <description>&lt;P&gt;GOPTIONS has nothing to do with the code shown. You have no Proc GPLOT GCHART GMAP or similar device based graphics output generated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is a suboptimal choice to not provide a fully qualified path for the output file. The relative path may place the output in strange locations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And what do you want to change the height to?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 15:14:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500432#M21838</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-01T15:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table height in ods powerpoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500637#M21839</link>
      <description>Yes I no that go options nothing to do with the code because I am getting warning device ActiveX that's y I have used that .&lt;BR /&gt;&lt;BR /&gt;And my requirement is in my table the values are less so it's not covering the height of the slide like there was one option in SAS outputwudth=100 so like width I want height is also equal to 100.&lt;BR /&gt;&lt;BR /&gt;So my plan is my increasing cell height I am trying to fit it to the page.</description>
      <pubDate>Tue, 02 Oct 2018 07:06:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Table-height-in-ods-powerpoint/m-p/500637#M21839</guid>
      <dc:creator>akash1088</dc:creator>
      <dc:date>2018-10-02T07:06:11Z</dc:date>
    </item>
  </channel>
</rss>

