<?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 Changing ODS Powerpoint Slide Title Size in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239776#M14916</link>
    <description>&lt;P&gt;I am trying to publish various charts that are created in SAS into powerpoint slides. However when I try to change the title size using&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint &amp;nbsp;layout=twocontent;&lt;BR /&gt;title1 height=32pt "&amp;nbsp;CHART TITLE" ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS output font is always 42pt.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;on the other hand if I use&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint layout=_null_;&lt;BR /&gt;title height=32pt "CHART TITLE";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the font changes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I figured that I can&amp;nbsp;use proc template to modify existing layouts (such as : twocontent), however I couldn't find an example in the SAS documentation so far that I can use. The examples that I found are mainly for ODS pdf outputs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Dec 2015 16:31:58 GMT</pubDate>
    <dc:creator>krm</dc:creator>
    <dc:date>2015-12-17T16:31:58Z</dc:date>
    <item>
      <title>Changing ODS Powerpoint Slide Title Size</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239776#M14916</link>
      <description>&lt;P&gt;I am trying to publish various charts that are created in SAS into powerpoint slides. However when I try to change the title size using&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint &amp;nbsp;layout=twocontent;&lt;BR /&gt;title1 height=32pt "&amp;nbsp;CHART TITLE" ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS output font is always 42pt.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;on the other hand if I use&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods powerpoint layout=_null_;&lt;BR /&gt;title height=32pt "CHART TITLE";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the font changes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I figured that I can&amp;nbsp;use proc template to modify existing layouts (such as : twocontent), however I couldn't find an example in the SAS documentation so far that I can use. The examples that I found are mainly for ODS pdf outputs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 16:31:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239776#M14916</guid>
      <dc:creator>krm</dc:creator>
      <dc:date>2015-12-17T16:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Powerpoint Slide Title Size</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239824#M14925</link>
      <description>&lt;P&gt;Instead of modifying the layout template (which you can't do), modify the style template. This works for me using SAS 9.4M3:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path (prepend) work.templat(update);
proc template;
   define style styles.mystyle;
      parent = styles.powerpointlight;
      class SystemTitle /
         fontsize=32pt;
   end;
run;

proc sort data=sashelp.class out=class;
   by sex;
   run;

ods powerpoint file="test.pptx" style=styles.mystyle;
ods powerpoint layout=twocontent(advance=bygroup) nogtitle;
title1 'CHART TITLE';
proc sgplot data=class;
	by sex;
	vbar name /response=height;
run;
ods powerpoint close;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Dec 2015 19:39:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239824#M14925</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-12-17T19:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Powerpoint Slide Title Size</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239860#M14926</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13838"&gt;@Tim_SAS﻿&lt;/a&gt;&amp;nbsp;thank you very much for your response.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's great to know that I cannot modify the layout template as that's why I have been trying.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also if I want to modify&amp;nbsp;other title sizes (not the main title but the smaller ones) in the same slide, should I do it under the same class statement?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 21:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/239860#M14926</guid>
      <dc:creator>krm</dc:creator>
      <dc:date>2015-12-17T21:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Powerpoint Slide Title Size</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/240004#M14928</link>
      <description>&lt;P&gt;There are 10 SystemTitle classes, one for each possible title statement. Their names are SystemTitle (for title1) and SystemTitle2-SystemTitle10. If you want to modify the style for title2 use the SystemTitle2 class. When you modify one of the SystemTitle classes, all of the higher-numbered SystemTitle classes automatically get the modification as well. So if you set the fontsize of SystemTitle2 to, say, 24pt, then SystemTitle3-SystemTitle10 get that fontsize. The PowerPointLight and PowerPointDark styles specify that SystemTitle uses fontsize=42pt, SystemTitle2 uses fontsize=24pt, and SystemTitle3-SystemTitle10 uses fontsize=20pt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can read more about ODS styles &lt;A href="https://support.sas.com/documentation/cdl/en/odsproc/67922/HTML/default/viewer.htm#p1t0ip5z3ouo89n1qbsztf3khjqr.htm" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/23/442.html" target="_self"&gt;Here's&lt;/A&gt; how&amp;nbsp;to&amp;nbsp;view the PowerPointLight and PowerPointDark styles that we supply for the destination for PowerPoint.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 13:53:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/240004#M14928</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-12-18T13:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Powerpoint Slide Title Size</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/240008#M14930</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13838"&gt;@Tim_SAS﻿&lt;/a&gt;&amp;nbsp;great information!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes I could get the custom font sizes as you mentioned in your post by using the line below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;define style styles.mystyle;&lt;BR /&gt;parent = styles.powerpointlight;&lt;BR /&gt;class SystemTitle /&lt;BR /&gt;fontsize=28pt;&lt;BR /&gt;class SystemTitle2 /&lt;BR /&gt;fontsize=20pt;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 14:00:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-ODS-Powerpoint-Slide-Title-Size/m-p/240008#M14930</guid>
      <dc:creator>krm</dc:creator>
      <dc:date>2015-12-18T14:00:28Z</dc:date>
    </item>
  </channel>
</rss>

