<?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: SRX styles for output in Developers</title>
    <link>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/344053#M5304</link>
    <description>Thanks, Vince.&lt;BR /&gt;</description>
    <pubDate>Fri, 24 Mar 2017 12:55:15 GMT</pubDate>
    <dc:creator>JoeCofone</dc:creator>
    <dc:date>2017-03-24T12:55:15Z</dc:date>
    <item>
      <title>SRX styles for output</title>
      <link>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/342544#M5300</link>
      <description>&lt;P&gt;How do I format a Proc Report in EG so that the .SRX generated displays any row/column banding that I apply? &amp;nbsp;It displays on the HTML, but not the SRX, so when I run the procedure in AMO, the formatting is lost.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing = '';
ods escapechar = '^';
proc report data = p1 style = pearl;
	columns div disc ees_tot ees
		('Traffic'('^S={background=ffc425} Inet' t_inet_d t_inet) ('Recr' t_recr_d t_recr)
		('Refr' t_refr_d t_refr) ('Reac' t_reac_d t_reac))
	;
	format ees_tot ees comma9.;
	define div / group;
	define t_inet_d / style(header) = [background=ffc425];
	break after div / summarize;
	rbreak after / summarize;
	compute after div;
		line ' ';
	endcomp;
	compute after;
		if div = '' then div = 'OGR';
	endcomp;
run;quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Mar 2017 12:19:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/342544#M5300</guid>
      <dc:creator>JoeCofone</dc:creator>
      <dc:date>2017-03-20T12:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: SRX styles for output</title>
      <link>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/342656#M5301</link>
      <description>&lt;P&gt;It would be best if you could include either a few records of garbage data, or change your code to use a SASHELP dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Right now I can't run your code to see what your desired results should look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 15:51:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/342656#M5301</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2017-03-20T15:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: SRX styles for output</title>
      <link>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/342673#M5302</link>
      <description>&lt;P&gt;Tom, I will in the future. &amp;nbsp;After messing around, I discovered that my issue is with the color itself. &amp;nbsp;The SRX won't recognize the SAS hexadecimal color FFC425, but will recognize GOLD. &amp;nbsp;I changed this and moved on. &amp;nbsp;I am assuming that if I modify the template used for the SRX style so that GOLD translates to FFC425 then I will be all set.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 16:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/342673#M5302</guid>
      <dc:creator>JoeCofone</dc:creator>
      <dc:date>2017-03-20T16:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: SRX styles for output</title>
      <link>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/344050#M5303</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;The color should be specified as&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;#&lt;/STRONG&gt;ffc425&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 12:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/344050#M5303</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2017-03-24T12:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: SRX styles for output</title>
      <link>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/344053#M5304</link>
      <description>Thanks, Vince.&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Mar 2017 12:55:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SRX-styles-for-output/m-p/344053#M5304</guid>
      <dc:creator>JoeCofone</dc:creator>
      <dc:date>2017-03-24T12:55:15Z</dc:date>
    </item>
  </channel>
</rss>

