<?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 Hyperlink and ODS PowerPoint in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238168#M14830</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am outputting my proc report tables&amp;nbsp;using ods PowerPoint. However because some of the tables can be quite large, I am limiting the output to only 10 rows for the PowerPoint&amp;nbsp;presentation and creating a pdf with the additional rows. With the PowerPoint&amp;nbsp;slide, I am trying to put a hyperlink on the footnote that notes that the table only contains the first 10 observations and that the additional&amp;nbsp;can be found within&amp;nbsp;the pdf (hyperlinking the pdf with the additional&amp;nbsp;data). The problem that I am encountering is when i output&amp;nbsp;the table with the footnote to the PowerPoint. The hyperlink disappears. I have attached the code that I am using for the footnote and I have already created the directory. I'm&amp;nbsp;wondering whether I am unable to hyperlink footnotes in this manner because I am outputting&amp;nbsp;to PowerPoint. Any insight is much appreciated.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;footnote3 j=left height=8pt color=black "&amp;lt;span&amp;gt; &amp;lt;a href='../Mathematics_mid_performanceK5.pdf'&amp;gt; Table contains data from the first 10 schools. Additional schools data can be found in 'Mathematics: Mid-Performance (K.5)&amp;lt;/a&amp;gt;";&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 07 Dec 2015 21:21:44 GMT</pubDate>
    <dc:creator>Amber1331</dc:creator>
    <dc:date>2015-12-07T21:21:44Z</dc:date>
    <item>
      <title>Hyperlink and ODS PowerPoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238168#M14830</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am outputting my proc report tables&amp;nbsp;using ods PowerPoint. However because some of the tables can be quite large, I am limiting the output to only 10 rows for the PowerPoint&amp;nbsp;presentation and creating a pdf with the additional rows. With the PowerPoint&amp;nbsp;slide, I am trying to put a hyperlink on the footnote that notes that the table only contains the first 10 observations and that the additional&amp;nbsp;can be found within&amp;nbsp;the pdf (hyperlinking the pdf with the additional&amp;nbsp;data). The problem that I am encountering is when i output&amp;nbsp;the table with the footnote to the PowerPoint. The hyperlink disappears. I have attached the code that I am using for the footnote and I have already created the directory. I'm&amp;nbsp;wondering whether I am unable to hyperlink footnotes in this manner because I am outputting&amp;nbsp;to PowerPoint. Any insight is much appreciated.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;footnote3 j=left height=8pt color=black "&amp;lt;span&amp;gt; &amp;lt;a href='../Mathematics_mid_performanceK5.pdf'&amp;gt; Table contains data from the first 10 schools. Additional schools data can be found in 'Mathematics: Mid-Performance (K.5)&amp;lt;/a&amp;gt;";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Dec 2015 21:21:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238168#M14830</guid>
      <dc:creator>Amber1331</dc:creator>
      <dc:date>2015-12-07T21:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink and ODS PowerPoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238212#M14837</link>
      <description>Hi:&lt;BR /&gt;  I am not sure that hyperlinks in Powerpoint will use an HREF= reference. That would be a question for Tech Support.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Tue, 08 Dec 2015 04:30:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238212#M14837</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-12-08T04:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink and ODS PowerPoint</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238277#M14841</link>
      <description>&lt;P&gt;You're right. You can't insert&amp;nbsp;an HTML hyperlink (or any HTML, for that matter) into a PowerPoint document. PowerPoint documents use a version of XML called PresentationML.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead, use the URL style attribute. The destination for PowerPoint interprets the attribute and inserts the necessary XML. Here's an example:&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 SystemFooter /
         url="http://www.sas.com";
   end;
run;

ods powerpoint file="ppurl.pptx" style=styles.mystyle;
footnote "My hyperlink";
proc print data=sashelp.class(obs=6);
run;
ods powerpoint close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Dec 2015 14:27:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Hyperlink-and-ODS-PowerPoint/m-p/238277#M14841</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-12-08T14:27:46Z</dc:date>
    </item>
  </channel>
</rss>

