<?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 ODS - Highlighting a cell in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688086#M24516</link>
    <description>&lt;P&gt;You can try a COMPUTE block like this one:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/14389941/sas-conditional-row-highlighting-with-ods-and-proc-print" target="_blank"&gt;https://stackoverflow.com/questions/14389941/sas-conditional-row-highlighting-with-ods-and-proc-print&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you can try custom formats, this paper does a great job explaining all the different implementation options.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.lexjansen.com/wuss/2006/tutorials/TUT-Carpenter.pdf" target="_blank"&gt;https://www.lexjansen.com/wuss/2006/tutorials/TUT-Carpenter.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125795"&gt;@DLROW&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi - I need to highlight a variance (cell)&amp;nbsp; that is &amp;gt;=15% or &amp;lt;=-15%. Below is the sample and code. Please help. Thanks.&lt;/P&gt;
&lt;P&gt;ODS EXCEL;&lt;/P&gt;
&lt;P&gt;PROC REPORT Data=DATA1&lt;/P&gt;
&lt;P&gt;COLUMNS First Group Second Group Date_MMYYYY, TOTAL_COUNT Date_MMYYYY,VARIANCE;&lt;BR /&gt;define FIRST GROUP / group 'First group' ORDER = INTERNAL;&lt;BR /&gt;define SECOND GROUP / group 'Second Group' ORDER = INTERNAL;&lt;BR /&gt;define DATE_MMYY / across '';&lt;BR /&gt;define TOTAL_COUNT / analysis '' format=comma20.;&lt;BR /&gt;define VARIANCE / analysis '' format=percent8.2;&lt;/P&gt;
&lt;P&gt;Run;&lt;BR /&gt;title;&lt;/P&gt;
&lt;P&gt;ods excel close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DLROW_0-1601520488890.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50033i069F2CC0D7455CB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DLROW_0-1601520488890.png" alt="DLROW_0-1601520488890.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Oct 2020 03:06:43 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-10-01T03:06:43Z</dc:date>
    <item>
      <title>PROC ODS - Highlighting a cell</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688085#M24515</link>
      <description>&lt;P&gt;Hi - I need to highlight a variance (cell)&amp;nbsp; that is &amp;gt;=15% or &amp;lt;=-15%. Below is the sample and code. Please help. Thanks.&lt;/P&gt;&lt;P&gt;ODS EXCEL;&lt;/P&gt;&lt;P&gt;PROC REPORT Data=DATA1&lt;/P&gt;&lt;P&gt;COLUMNS First Group Second Group Date_MMYYYY, TOTAL_COUNT Date_MMYYYY,VARIANCE;&lt;BR /&gt;define FIRST GROUP / group 'First group' ORDER = INTERNAL;&lt;BR /&gt;define SECOND GROUP / group 'Second Group' ORDER = INTERNAL;&lt;BR /&gt;define DATE_MMYY / across '';&lt;BR /&gt;define TOTAL_COUNT / analysis '' format=comma20.;&lt;BR /&gt;define VARIANCE / analysis '' format=percent8.2;&lt;/P&gt;&lt;P&gt;Run;&lt;BR /&gt;title;&lt;/P&gt;&lt;P&gt;ods excel close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DLROW_0-1601520488890.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50033i069F2CC0D7455CB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DLROW_0-1601520488890.png" alt="DLROW_0-1601520488890.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 02:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688085#M24515</guid>
      <dc:creator>DLROW</dc:creator>
      <dc:date>2020-10-01T02:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ODS - Highlighting a cell</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688086#M24516</link>
      <description>&lt;P&gt;You can try a COMPUTE block like this one:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/14389941/sas-conditional-row-highlighting-with-ods-and-proc-print" target="_blank"&gt;https://stackoverflow.com/questions/14389941/sas-conditional-row-highlighting-with-ods-and-proc-print&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you can try custom formats, this paper does a great job explaining all the different implementation options.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.lexjansen.com/wuss/2006/tutorials/TUT-Carpenter.pdf" target="_blank"&gt;https://www.lexjansen.com/wuss/2006/tutorials/TUT-Carpenter.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125795"&gt;@DLROW&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi - I need to highlight a variance (cell)&amp;nbsp; that is &amp;gt;=15% or &amp;lt;=-15%. Below is the sample and code. Please help. Thanks.&lt;/P&gt;
&lt;P&gt;ODS EXCEL;&lt;/P&gt;
&lt;P&gt;PROC REPORT Data=DATA1&lt;/P&gt;
&lt;P&gt;COLUMNS First Group Second Group Date_MMYYYY, TOTAL_COUNT Date_MMYYYY,VARIANCE;&lt;BR /&gt;define FIRST GROUP / group 'First group' ORDER = INTERNAL;&lt;BR /&gt;define SECOND GROUP / group 'Second Group' ORDER = INTERNAL;&lt;BR /&gt;define DATE_MMYY / across '';&lt;BR /&gt;define TOTAL_COUNT / analysis '' format=comma20.;&lt;BR /&gt;define VARIANCE / analysis '' format=percent8.2;&lt;/P&gt;
&lt;P&gt;Run;&lt;BR /&gt;title;&lt;/P&gt;
&lt;P&gt;ods excel close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DLROW_0-1601520488890.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50033i069F2CC0D7455CB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DLROW_0-1601520488890.png" alt="DLROW_0-1601520488890.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 03:06:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688086#M24516</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-01T03:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ODS - Highlighting a cell</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688204#M24517</link>
      <description>Hi:&lt;BR /&gt;  In addition to &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s suggestions, this paper goes into more detail:&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings14/SAS388-2014.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings14/SAS388-2014.pdf&lt;/A&gt; about working with ACROSS items.&lt;BR /&gt;Cynthia</description>
      <pubDate>Thu, 01 Oct 2020 14:12:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688204#M24517</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-10-01T14:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ODS - Highlighting a cell</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688316#M24518</link>
      <description>&lt;P&gt;Thanks all. I went through those papers and I got what I need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 18:51:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-ODS-Highlighting-a-cell/m-p/688316#M24518</guid>
      <dc:creator>DLROW</dc:creator>
      <dc:date>2020-10-01T18:51:04Z</dc:date>
    </item>
  </channel>
</rss>

