<?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: Proc Report and Transparency in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879926#M82786</link>
    <description>RGBa is not listed as supported in SAS.&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/p0edl20cvxxmm9n1i9ht3n21eict.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/p0edl20cvxxmm9n1i9ht3n21eict.htm&lt;/A&gt;</description>
    <pubDate>Fri, 09 Jun 2023 17:25:42 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2023-06-09T17:25:42Z</dc:date>
    <item>
      <title>Proc Report and Transparency</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879917#M82785</link>
      <description>&lt;P&gt;Simple question. &lt;BR /&gt;&lt;BR /&gt;When I use the typical RGB color designation in proc report, everything works as expected.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;          
value report_clor  
	.			="Gray" 
	low -&amp;lt; 12	= "cx0aac2d"          
	12 -&amp;lt; 24	= "cx60c70d"  
	24 -&amp;lt; 36	= "cx98c20f" 
	36 -&amp;lt; 48	= "cxaeb80d" 
	48 -&amp;lt; 60	= "cxdac713" 
	60 -&amp;lt; 72	= "cxdf972b"  
	72 -&amp;lt; 84	= "cxdb5237"          
	84 -&amp;lt; 96	= "cxd13119"          
	96 - high	= "cxb30505";     
run; 

proc report data=work.table_e_summ;
	column zSiteID zvisitnm, Prop_25 ;
	define zSiteID  / group;
	define zvisitnm / across;
	define Prop_25  / group " " style=[background=] ;

	format Prop_25 8.2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The moment I try to switch the RGB to an RGBa code the report is not using the color at all.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;          
value report_clor  
	.			="Gray" 
	low -&amp;lt; 24	= "a03a10366"  
	24 -&amp;lt; 36	= "a5de82766" 
	36 -&amp;lt; 48	= "a97e82766" 
	48 -&amp;lt; 60	= "ab7e82766" 
	60 -&amp;lt; 72	= "afffb0066"  
	72 -&amp;lt; 84	= "ae8992766"          
	84 -&amp;lt; 96	= "ae85f2766"          
	96 - high	= "aff001d66";     
run; 


proc report data=work.table_e_summ;
	column zSiteID zvisitnm, Prop_25 ;
	define zSiteID  / group;
	define zvisitnm / across;
	define Prop_25  / group " " style=[background=] ;

	format Prop_25 8.2;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does proc Report not support the use of RGBA color codes?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 17:08:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879917#M82785</guid>
      <dc:creator>GreyJoy</dc:creator>
      <dc:date>2023-06-09T17:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report and Transparency</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879926#M82786</link>
      <description>RGBa is not listed as supported in SAS.&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/p0edl20cvxxmm9n1i9ht3n21eict.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/p0edl20cvxxmm9n1i9ht3n21eict.htm&lt;/A&gt;</description>
      <pubDate>Fri, 09 Jun 2023 17:25:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879926#M82786</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-09T17:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report and Transparency</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879942#M82787</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; What's interesting is that this Tech Support note &lt;A href="https://support.sas.com/kb/48/144.html" target="_blank"&gt;https://support.sas.com/kb/48/144.html&lt;/A&gt; and the SAS/Graph code do show that SAS/Graph supports the transparent colors (ugly though you can see the transparency):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1686335890525.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/84863iFCDD8FDB2D6E3096/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1686335890525.png" alt="Cynthia_sas_0-1686335890525.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I wonder if this a SAS/GRAPH or ODS Graphics only usage that doesn't work in PROC REPORT. That would be a question for Tech Support.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 18:45:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-and-Transparency/m-p/879942#M82787</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-06-09T18:45:28Z</dc:date>
    </item>
  </channel>
</rss>

