<?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 ODS Powerpoint: Border Color Problems? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239810#M14920</link>
    <description>&lt;P&gt;Hello Everyone,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My table generated from proc report looks perfect in HTML, however when it is ouput into PowerPoint using ODS Powerpoint I lose the border colors. Currently I have the &amp;nbsp;borders set to white with a 2pt width. The background of my PowerPoint template is a light blue, so the white border would be visible. Has anyone else had a similar problem?&lt;/P&gt;</description>
    <pubDate>Thu, 17 Dec 2015 18:35:44 GMT</pubDate>
    <dc:creator>Amber1331</dc:creator>
    <dc:date>2015-12-17T18:35:44Z</dc:date>
    <item>
      <title>ODS Powerpoint: Border Color Problems?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239810#M14920</link>
      <description>&lt;P&gt;Hello Everyone,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My table generated from proc report looks perfect in HTML, however when it is ouput into PowerPoint using ODS Powerpoint I lose the border colors. Currently I have the &amp;nbsp;borders set to white with a 2pt width. The background of my PowerPoint template is a light blue, so the white border would be visible. Has anyone else had a similar problem?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 18:35:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239810#M14920</guid>
      <dc:creator>Amber1331</dc:creator>
      <dc:date>2015-12-17T18:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Border Color Problems?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239819#M14923</link>
      <description>&lt;P&gt;It would help if you could post a program that we could use to reproduced this problem. Also, what version of SAS are you using?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 19:15:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239819#M14923</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-12-17T19:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Border Color Problems?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239821#M14924</link>
      <description>&lt;P&gt;My code with the template that I am using for my powerpoint is attached and I am using 9.4. I have a sneaky suspicion that it has something to do with the picture as a background.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
define style styles.appendix;
parent=styles.powerpointlight;
class body/
	backgroundimage="Background.jpg";
class systemfooter / just=left;
style systemfooter / color=black font_Size=8pt;
style table / cellpadding=0pt cellspacing=0pt height=5pt;
end;

proc report data=Slide3 nowd
style(header)=[fontfamily=Calibri fontsize=11pt fontweight=bold foreground=CXFFFFFF background=CX002060 bordercolor=CXFFFFFF just=center vjust=middle borderwidth=2pt]
style(column)=[fontfamily=Calibri fontsize=11pt foreground=black background=CXDEF1F4 bordercolor=white just=center vjust=middle
				borderightwidth=2pt borderleftwidth=2pt bordertopwidth=2pt borderbottomwidth=2pt]
style(report)=[bordertopcolor=CXFFFFFF borderbottomcolor=CXFFFFFF borderrightcolor=CXFFFFFF borderleftcolor=CXFFFFFF
				borderrightwidth=2pt borderleftwidth=2pt bordertopwidth=2pt borderbottomwidth=2pt]
style(lines)=[background=CXDEF1F4 foreground=black fontfamily=Calibri fontsize=18pt just=center vjust=middle bordercolor=CXFFFFFF
				borderrightwidth=2pt borderleftwidth=2pt bordertopwidth=2pt borderbottomwidth=2pt fontweight=bold cellpadding=0pt cellspacing=0pt];
column (label field_description ('Subject' subject)('Term' Term ) grade,(count));
define label/ group order=DATA noprint;
define field_description/ group noprint;
define Subject / " " group order=DATA format=$sub. style=[just=left];
define Term / " "  group format=$term. style=[just=left];
define grade/ across order=DATA ' ' format=$gr.;
define count/ '' analysis format=comma.;
compute term;
if term='c.MOY' and subject='Mathematics' then do;
call define (4,'style','style=[foreground=CXCED1E3]'); end;
else if term='c.MOY' and subject='Reading' then do;
call define (4,'style', 'style=[foreground=CXDFF1F4]');
end;
endcomp;
compute before label;
line label $cat.;
endcomp;
compute subject;
if subject='Mathematics' then do;
	call define (_row_,'style','style=[background=CXCED1E3]');end;
endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Dec 2015 19:18:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/239821#M14924</guid>
      <dc:creator>Amber1331</dc:creator>
      <dc:date>2015-12-17T19:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Border Color Problems?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/240057#M14939</link>
      <description>&lt;P&gt;Thanks for the code. I can reproduce this problem. I'm sorry, but&amp;nbsp;I can't come up with a way to work around it. I've reported it and&amp;nbsp;we'll fix it as soon as we can.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 17:17:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/240057#M14939</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-12-18T17:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Powerpoint: Border Color Problems?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/240058#M14940</link>
      <description>&lt;P&gt;Thanks so much for taking the time to look into it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 17:19:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Powerpoint-Border-Color-Problems/m-p/240058#M14940</guid>
      <dc:creator>Amber1331</dc:creator>
      <dc:date>2015-12-18T17:19:17Z</dc:date>
    </item>
  </channel>
</rss>

