<?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 Powerpoint: Unbale to export a table with multiple columns to powerpoint slide in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942311#M26747</link>
    <description>&lt;P&gt;I would suggest using PROC REPORT, or maybe even just PROC PRINT to generate the report.&amp;nbsp; It gives you control over font size, column widths, etc.&amp;nbsp; You can still use PROC SQL to calculate the values, then use PROC REPORT to print them out.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/37420"&gt;@JaneEslinger&lt;/a&gt;&amp;nbsp;has a bunch of great papers on ODS PowerPoint, including one specifically on the topic of how to make content fit a slide:&lt;BR /&gt;&lt;A href="https://www.lexjansen.com/pharmasug/2018/DV/PharmaSUG-2018-DV01.pdf" target="_blank"&gt;https://www.lexjansen.com/pharmasug/2018/DV/PharmaSUG-2018-DV01.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Sep 2024 14:39:02 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2024-09-03T14:39:02Z</dc:date>
    <item>
      <title>ODS Powerpoint: Unbale to export a table with multiple columns to powerpoint slide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942298#M26746</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint file = "path/slide1.pptx";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select dept, sum(sales) sales, sum(repossessions) as repossesions, sum(losses) as loss, sum(profit) as profit, sum(accounts) as no_of_accounts&lt;/P&gt;&lt;P&gt;from table table1&lt;/P&gt;&lt;P&gt;group by dept;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am expecting the complete output in a single slide, but the initial two columns in first slide, next two columns in 2nd slide and the rest in 3rd slide. the tabular data is flowing into multiple slide instead of a single slide.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please or guide&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached a zip folders which has got 3 slides. Need to show in those formats.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2024 14:19:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942298#M26746</guid>
      <dc:creator>SanaMohanReddy</dc:creator>
      <dc:date>2024-09-03T14:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Unbale to export a table with multiple columns to powerpoint slide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942311#M26747</link>
      <description>&lt;P&gt;I would suggest using PROC REPORT, or maybe even just PROC PRINT to generate the report.&amp;nbsp; It gives you control over font size, column widths, etc.&amp;nbsp; You can still use PROC SQL to calculate the values, then use PROC REPORT to print them out.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/37420"&gt;@JaneEslinger&lt;/a&gt;&amp;nbsp;has a bunch of great papers on ODS PowerPoint, including one specifically on the topic of how to make content fit a slide:&lt;BR /&gt;&lt;A href="https://www.lexjansen.com/pharmasug/2018/DV/PharmaSUG-2018-DV01.pdf" target="_blank"&gt;https://www.lexjansen.com/pharmasug/2018/DV/PharmaSUG-2018-DV01.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2024 14:39:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942311#M26747</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-09-03T14:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Unbale to export a table with multiple columns to powerpoint slide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942412#M26748</link>
      <description>&lt;P&gt;I got no problem at all. Maybe there are some code you did not show?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods powerpoint file = "c:\temp\slide1.pptx";

proc sql;
select sex length=8, sum(weight) as sales, sum(weight) as repossesions, sum(weight) as loss, sum(weight) as profit, sum(weight) as no_of_accounts
from sashelp.class
group by sex;
quit;

ods powerpoint close;&lt;/CODE&gt;&lt;/PRE&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="Ksharp_0-1725413280225.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/99944iE8806291F6D35748/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1725413280225.png" alt="Ksharp_0-1725413280225.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 01:28:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942412#M26748</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-09-04T01:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Unbale to export a table with multiple columns to powerpoint slide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942464#M26749</link>
      <description>&lt;P&gt;Hi, Thank you. But i dont have any other code. i tried using proc print directly but the columns are flowing into multiple slides. Not sure of the issue&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 13:20:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942464#M26749</guid>
      <dc:creator>SanaMohanReddy</dc:creator>
      <dc:date>2024-09-04T13:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Unbale to export a table with multiple columns to powerpoint slide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942465#M26750</link>
      <description>Thank you. Let me try and come back</description>
      <pubDate>Wed, 04 Sep 2024 13:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942465#M26750</guid>
      <dc:creator>SanaMohanReddy</dc:creator>
      <dc:date>2024-09-04T13:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Unbale to export a table with multiple columns to powerpoint slide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942482#M26751</link>
      <description>&lt;P&gt;This sounds like your output is using LAYOUT=twocontent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See if using&lt;/P&gt;
&lt;PRE&gt;ods powerpoint file = "path/slide1.pptx" layout=titleandcontent;&lt;/PRE&gt;
&lt;P&gt;helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 14:55:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Unbale-to-export-a-table-with-multiple-columns-to/m-p/942482#M26751</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-09-04T14:55:03Z</dc:date>
    </item>
  </channel>
</rss>

